Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Q
Quasar Components MoSys
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
9
Issues
9
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Motion Bank
MB.js
Quasar Components MoSys
Compare Revisions
9c54c2717c1d33995eb445a61549cec07211b3c9...ae2cf61aa4ead8d08299fda87b2f0e59c3b29ac2
Source
ae2cf61aa4ead8d08299fda87b2f0e59c3b29ac2
Select Git revision
...
Target
9c54c2717c1d33995eb445a61549cec07211b3c9
Select Git revision
Compare
Commits (2)
renamed computed property
· ee9d98d5
christianrhansen
authored
Nov 07, 2019
ee9d98d5
added cell notification
· ae2cf61a
christianrhansen
authored
Nov 07, 2019
ae2cf61a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
partials/GridEditor.vue
partials/GridEditor.vue
+5
-5
No files found.
partials/GridEditor.vue
View file @
ae2cf61a
...
...
@@ -15,7 +15,7 @@
#new-cell-header.fixed-top.z-top.bg-dark.text-white.transition(:class="{'show': cachedNewCell}")
q-item.q-pl-md.q-pr-xs.q-py-none.full-height
q-item-main
strong New
{{
n
ewCellType
}}
strong New
{{
cachedN
ewCellType
}}
q-item-side.text-white
q-btn(@click="event => {addMobileCell(event)}", round, flat)
...
...
@@ -285,7 +285,7 @@
scrollPositionCache
:
'
mosys/getScrollPositionCache
'
,
editMode
:
'
mosys/getEditMode
'
}),
n
ewCellType
()
{
cachedN
ewCellType
()
{
if
(
this
.
cachedNewCell
)
{
let
type
=
this
.
cachedNewCell
.
component
return
type
.
substr
(
4
,
type
.
length
-
4
)
...
...
@@ -564,9 +564,9 @@
this
.
$store
.
commit
(
'
mosys/cacheNewCell
'
,
undefined
)
this
.
$q
.
notify
({
message
:
'
Cell was added.
'
,
color
:
'
dark
'
,
position
:
'
center
'
,
timeout
:
5
0
color
:
'
primary
'
,
position
:
'
bottom-left
'
,
timeout
:
80
0
})
}
},
...
...