Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/components/AliasedActionCreateDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,13 @@
</VCol>
</VRow>
</VForm>
<VAlert
type="warning"
v-if="initialAliasedActionKey && formAliasedActionKey !== initialAliasedActionKey"
>
Screens and Buttons reference Aliased Actions by their key. You should
not change an Aliased Action's key unless you know what you are doing.
</VAlert>
<div class="action-btns lower-action-btns">
<VBtn class="cancel-btn" @click="cancelClicked">
Cancel
Expand Down Expand Up @@ -185,7 +192,7 @@ export default {
},
initialActionArg: {
type: String,
default: "/play "
default: "play "
},
initialHypixelBuildTeamAdminOnly: {
type: Boolean,
Expand Down Expand Up @@ -287,7 +294,7 @@ export default {
!this.formActionArg &&
this.formActionType === "SendChatCommandAction"
) {
this.formActionArg = "/play ";
this.formActionArg = "play ";
} else {
this.formActionArg = "";
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/AliasedActionsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default {
editorInitialVisibleValue: true,
editorInitialAdminOnlyValue: false,
editorInitialActionType: "SendChatCommandAction",
editorInitialActionArg: "/play ",
editorInitialActionArg: "play ",
editorInitialHypixelPackageRankRegex: "",
editorInitialHypixelRankRegex: "",
editorInitialHypixelLocrawRegex: "",
Expand Down Expand Up @@ -137,7 +137,7 @@ export default {
this.editorInitialVisibleValue = true;
this.editorInitialAdminOnlyValue = false;
this.editorInitialActionType = "SendChatCommandAction";
this.editorInitialActionArg = "/play ";
this.editorInitialActionArg = "play ";
this.editorInitialHypixelRankRegex = "";
this.editorInitialHypixelPackageRankRegex = "";
this.editorInitialHypixelLocrawRegex = {};
Expand Down
4 changes: 2 additions & 2 deletions src/components/TranslationCreateDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ export default {
},
initialTranslationKey: {
type: String,
default: ""
default: "quickplay.games."
},
initialTranslationLang: {
type: String,
default: ""
default: "en_us"
},
initialTranslationValue: {
type: String,
Expand Down