diff --git a/src/App.vue b/src/App.vue
index a58c5bcf6..52fd243aa 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -68,7 +68,7 @@ export default {
} else if (currentRoute.path.startsWith('/view/')) {
this.$store.commit('setActiveViewId', parseInt(currentRoute.params.viewId))
this.setPageTitle(this.$store.getters.activeView.title)
- } else if (currentRoute.path.startsWith('/context/')) {
+ } else if (currentRoute.path.startsWith('/application/')) {
this.$store.commit('setActiveContextId', parseInt(currentRoute.params.contextId))
this.setPageTitle(this.$store.getters.activeContext.name)
}
diff --git a/src/modules/modals/CreateContext.vue b/src/modules/modals/CreateContext.vue
index 9491de759..05b17e396 100644
--- a/src/modules/modals/CreateContext.vue
+++ b/src/modules/modals/CreateContext.vue
@@ -3,7 +3,7 @@
-
{{ t('tables', 'Create an Application') }}
+ {{ t('tables', 'Create an application') }}
@@ -27,7 +27,7 @@
{{ t('tables', 'Description') }}
+ :placeholder="t('tables', 'Description of the new application')">
@@ -37,8 +37,8 @@
-
- {{ t('tables', 'Create Application') }}
+
+ {{ t('tables', 'Create application') }}
diff --git a/src/modules/navigation/partials/NavigationContextItem.vue b/src/modules/navigation/partials/NavigationContextItem.vue
index 2b10ed62d..ca3cfb38d 100644
--- a/src/modules/navigation/partials/NavigationContextItem.vue
+++ b/src/modules/navigation/partials/NavigationContextItem.vue
@@ -1,7 +1,7 @@
+ :to="'/application/' + parseInt(context.id)">
{{ context.iconName }}
@@ -16,7 +16,7 @@
- {{ t('tables', 'Edit context') }}
+ {{ t('tables', 'Edit application') }}
diff --git a/src/modules/navigation/sections/Navigation.vue b/src/modules/navigation/sections/Navigation.vue
index e10b91072..da5618c41 100644
--- a/src/modules/navigation/sections/Navigation.vue
+++ b/src/modules/navigation/sections/Navigation.vue
@@ -58,9 +58,9 @@
-
+
-
diff --git a/src/router.js b/src/router.js
index 567d2309b..9abf12c08 100644
--- a/src/router.js
+++ b/src/router.js
@@ -17,12 +17,12 @@ export default new Router({
component: Startpage,
},
{
- path: '/context/:contextId',
+ path: '/application/:contextId',
component: Context,
name: 'context',
},
{
- path: '/context/:contextId/row/:rowId',
+ path: '/application/:contextId/row/:rowId',
component: Context,
name: 'contextRow',
},