Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2968 Added option 'Assign Event enabled' to System Settings in new UI #2970

Merged
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
3 changes: 2 additions & 1 deletion scadalts-ui/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1063,5 +1063,6 @@
"systemsettings.webresource.uploads.path": "Uploaded images save path",
"systemsettings.webresource.graphics.path": "Custom Graphics images path",
"systemsettings.webresource.uploads.path.wrong":"Uploaded images save path must end with 'uploads' or 'uploads{0}' ",
"systemsettings.webresource.graphics.path.wrong": "Custom Graphics images path must end with 'graphics' or 'graphics{0}' "
"systemsettings.webresource.graphics.path.wrong": "Custom Graphics images path must end with 'graphics' or 'graphics{0}' ",
"systemsettings.misc.eventAssignEnabled": "Event Assign enabled"
}
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@
:rules="[validateUploadsPath]"
></v-text-field>
</v-col>
<v-col cols="12">
<v-switch
v-model="miscSettings.eventAssignEnabled"
:label="$t('systemsettings.misc.eventAssignEnabled')"
@change="watchDataChange()"
></v-switch>
</v-col>
</v-row>
</v-card-text>
</v-card>
Expand Down
Loading