Skip to content

Commit

Permalink
enh: rename to Application
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M <patrathewhiz@gmail.com>
  • Loading branch information
enjeck committed Apr 3, 2024
1 parent 162970d commit bb06efa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/modals/CreateContext.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default {
},
async submit() {
if (this.title === '') {
showError(t('tables', 'Cannot create new context. Title is missing.'))
showError(t('tables', 'Cannot create new application. Title is missing.'))
this.errorTitle = true
} else {
const newContextId = await this.sendNewContextToBE()
Expand Down
2 changes: 1 addition & 1 deletion src/modules/modals/EditContext.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export default {
// TODO show edited changes if we're currently viewing the active context
async submit() {
if (this.title === '') {
showError(t('tables', 'Cannot update context. Title is missing.'))
showError(t('tables', 'Cannot update application. Title is missing.'))
this.errorTitle = true
} else {
const dataResources = this.resources.map(resource => {
Expand Down

0 comments on commit bb06efa

Please sign in to comment.