Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Motion Bank
Applications
Systems Frontend
Commits
ef1182c6
Commit
ef1182c6
authored
Mar 25, 2020
by
anton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add legacy warning message
parent
81875db0
Pipeline
#50854
passed with stage
in 2 minutes and 18 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
6 deletions
+19
-6
quasar.conf.js
quasar.conf.js
+4
-1
src/components/shared
src/components/shared
+1
-1
src/i18n/en/index.js
src/i18n/en/index.js
+4
-2
src/pages/mosys/grids/list.vue
src/pages/mosys/grids/list.vue
+5
-1
src/pages/piecemaker/timelines/list.vue
src/pages/piecemaker/timelines/list.vue
+5
-1
No files found.
quasar.conf.js
View file @
ef1182c6
...
...
@@ -129,6 +129,8 @@ module.exports = function (ctx) {
//
// Features
//
MIGRATION_PREVIOUS_URL
:
JSON
.
stringify
(
process
.
env
.
MIGRATION_PREVIOUS_URL
||
null
),
MIGRATION_PREVIOUS_INFO_URL
:
JSON
.
stringify
(
process
.
env
.
MIGRATION_PREVIOUS_INFO_URL
||
null
),
USE_ACL
:
JSON
.
stringify
(
process
.
env
.
USE_ACL
||
true
),
USE_FILES
:
JSON
.
stringify
(
process
.
env
.
USE_FILES
||
true
),
USE_TAGS
:
JSON
.
stringify
(
process
.
env
.
USE_TAGS
||
true
),
...
...
@@ -240,7 +242,8 @@ module.exports = function (ctx) {
'
QEditor
'
,
'
QCarousel
'
,
'
QCarouselSlide
'
,
'
QCarouselControl
'
'
QCarouselControl
'
,
'
QAlert
'
],
directives
:
[
'
Ripple
'
,
...
...
shared
@
a17fa9b5
Compare
f8468920
...
a17fa9b5
Subproject commit
f84689205dfd0e3823738e5b9a7c8fa039505700
Subproject commit
a17fa9b513303f2aa8e483bbbf69c8cb8e0a7cda
src/i18n/en/index.js
View file @
ef1182c6
...
...
@@ -47,7 +47,8 @@ export default {
submit
:
'
Submit
'
,
synchronize
:
'
Sync
'
,
media
:
'
Media
'
,
yes
:
'
Yes
'
yes
:
'
Yes
'
,
do_not_show_again
:
'
Do not show again
'
},
checkboxes
:
{
delete
:
'
delete
'
,
...
...
@@ -202,7 +203,8 @@ export default {
browser_unsupported_warning
:
'
<strong>Unsupported browser:</strong> For optimal performance please use
'
+
'
<a href="https://www.mozilla.org/firefox/" target="_blank">Firefox</a> or
'
+
'
<a href="http://www.chromium.org/Home" target="_blank">Chromium</a>.<br>
'
+
'
<small>While the site might work on your browser, more or less subtle problems can occur. You have been warned!</small>
'
'
<small>While the site might work on your browser, more or less subtle problems can occur. You have been warned!</small>
'
,
legacy_site_migration
:
'
Looking for the previous version and your data? It’s still there:
'
},
navigation
:
{
annotate_media
:
'
Annotate Media
'
,
...
...
src/pages/mosys/grids/list.vue
View file @
ef1182c6
...
...
@@ -2,6 +2,8 @@
full-screen
confirm-modal(ref="confirmModal", @confirm="handleConfirmModal")
migration-warning
content-block(:position="'first'")
headline(:content="$t('routes.mosys.grids.list.title')")
...
...
@@ -25,12 +27,14 @@
import
Headline
from
'
../../../components/shared/elements/Headline
'
import
ContentBlock
from
'
../../../components/shared/elements/ContentBlock
'
import
ContentParagraph
from
'
../../../components/shared/elements/ContentParagraph
'
import
MigrationWarning
from
'
../../../components/shared/partials/MigrationWarning
'
export
default
{
components
:
{
Headline
,
ContentBlock
,
ContentParagraph
ContentParagraph
,
MigrationWarning
},
data
()
{
const
_this
=
this
...
...
src/pages/piecemaker/timelines/list.vue
View file @
ef1182c6
...
...
@@ -2,6 +2,8 @@
full-screen
confirm-modal(ref="confirmModal", @confirm="handleConfirmModal")
migration-warning
//
span(slot="form-logo")
span(slot="form-title")
{{
$t
(
'
routes.piecemaker.timelines.list.title
'
)
}}
...
...
@@ -43,13 +45,15 @@
import
Headline
from
'
../../../components/shared/elements/Headline
'
import
ContentBlock
from
'
../../../components/shared/elements/ContentBlock
'
import
ContentParagraph
from
'
../../../components/shared/elements/ContentParagraph
'
import
MigrationWarning
from
'
../../../components/shared/partials/MigrationWarning
'
import
{
mapGetters
}
from
'
vuex
'
export
default
{
components
:
{
Headline
,
ContentBlock
,
ContentParagraph
ContentParagraph
,
MigrationWarning
},
data
()
{
const
_this
=
this
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment