Skip to content

Commit

Permalink
Fix not allowing null values on gotv port.
Browse files Browse the repository at this point in the history
Update plugin name to reflect later changes.
  • Loading branch information
PhlexPlexico committed Feb 8, 2021
1 parent f630899 commit 225e329
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/MatchCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default {
},
imageError(matchIdx) {
console.log(this.matches[matchIdx].map_name);
this.matches[matchIdx].map_name = '_unknown';
this.matches[matchIdx].map_name = "_unknown";
return;
}
},
Expand Down
3 changes: 2 additions & 1 deletion src/components/ServerDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,13 @@
</v-col>
<v-col cols="12" sm="12" md="12" lg="4">
<v-text-field
v-model="serverInfo.gotv_port"
v-model.number="serverInfo.gotv_port"
:label="$t('ServerCreate.FormGOTVPort')"
ref="GotvPort"
type="number"
:rules="[
() =>
serverInfo.gotv_port == null ||
(serverInfo.gotv_port > 0 &&
serverInfo.gotv_port < 65536) ||
$t('ServerCreate.PortRangeIncorrect')
Expand Down
4 changes: 2 additions & 2 deletions src/translations/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
},
"ServerCreate": {
"InfoWillNotBeExposed": "Your server information will not be exposed to other users.",
"Get5Help": "Make sure your server is running and has the get5 server plugins installed first.<br>See <a href=\"https://github.com/splewis/get5/wiki/Step-by-step-installation-guide\">the get5 wiki</a> for help installing the get5 and <a href=\"https://github.com/phlexplexico/get5-webapi\">get5_apistats</a> plugins. PLEASE ENSURE sv_logecho = 1 IS SET ON THE SERVER AND 'log on'",
"Get5Help": "Make sure your server is running and has the get5 server plugins installed first.<br>See <a href=\"https://github.com/splewis/get5/wiki/Step-by-step-installation-guide\">the get5 wiki</a> for help installing the get5 and <a href=\"https://github.com/phlexplexico/get5-webapi\">G5WS</a> plugins. PLEASE ENSURE sv_logecho = 1 IS SET ON THE SERVER AND 'log on'",
"FormDisplayName": "Display Name",
"FormServerIP": "Host Name",
"FormServerHint": "Can be a URL as well.",
Expand Down Expand Up @@ -519,7 +519,7 @@
},
"ServerCreate": {
"InfoWillNotBeExposed": "あなたのサーバー情報は他のユーザーには公開されません。",
"Get5Help": "サーバーが稼働中でGet5プラグインがインストールされていることを確認してください。<br>Get5のインストールは<a href=\"https://github.com/splewis/get5/wiki/Step-by-step-installation-guide\">get5 wiki</a> get5 と <a href=\"https://github.com/phlexplexico/get5-webapi\">get5_apistats</a> プラグインをインストールする際の参考にしてください。sv_logecho = 1 がサーバに設定されていることと 'log on' が設定されていることを確認してください。",
"Get5Help": "サーバーが稼働中でGet5プラグインがインストールされていることを確認してください。<br>Get5のインストールは<a href=\"https://github.com/splewis/get5/wiki/Step-by-step-installation-guide\">get5 wiki</a> get5 と <a href=\"https://github.com/phlexplexico/get5-webapi\">G5WS</a> プラグインをインストールする際の参考にしてください。sv_logecho = 1 がサーバに設定されていることと 'log on' が設定されていることを確認してください。",
"FormDisplayName": "表示名",
"FormServerIP": "ホスト名",
"FormServerHint": "URLにすることもできます。",
Expand Down

0 comments on commit 225e329

Please sign in to comment.