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
Commits
ecf75376
Commit
ecf75376
authored
Mar 26, 2020
by
anton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix setCellDimensions broken updates by using Annotation model's get2DArea function
parent
05578514
Pipeline
#51359
passed with stage
in 5 minutes and 1 second
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
partials/GridEditor.vue
partials/GridEditor.vue
+7
-7
No files found.
partials/GridEditor.vue
View file @
ecf75376
...
...
@@ -921,14 +921,14 @@
if
(
annotation
)
{
let
parsed
=
annotation
.
target
.
selector
.
_value
,
sliced
=
parsed
.
xywh
.
slice
(
0
,
4
),
x
=
sliced
[
0
],
y
=
sliced
[
1
]
target
=
this
.
data
.
grid
.
get2DArea
(
parsed
.
xywh
.
slice
(
0
,
2
),
[
_w
,
_h
])
const
value
=
{
xywh
:
[
x
,
y
,
_w
,
_h
]
}
annotation
.
target
.
selector
.
value
=
value
await
this
.
$store
.
dispatch
(
'
annotations/patch
'
,
[
annotation
.
id
,
{
target
:
{
selector
:
{
value
}
}
}])
annotation
.
target
.
selector
.
value
=
target
.
selector
.
value
await
this
.
$store
.
dispatch
(
'
annotations/patch
'
,
[
annotation
.
id
,
{
target
:
{
selector
:
{
value
:
target
.
selector
.
value
}
}
}])
}
},
//
...
...
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