Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-webui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-webui
Commits
093ff2b7
Commit
093ff2b7
authored
2 years ago
by
florian
Browse files
Options
Downloads
Patches
Plain Diff
FIX: Only use the edit-mode fix when actually in edit mode
parent
09290e42
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!89
Release v0.10.0
,
!86
F hide properties
Pipeline
#31247
passed
2 years ago
Stage: linting
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/js/ext_prop_display.js
+14
-7
14 additions, 7 deletions
src/core/js/ext_prop_display.js
with
14 additions
and
7 deletions
src/core/js/ext_prop_display.js
+
14
−
7
View file @
093ff2b7
...
...
@@ -180,15 +180,22 @@ var prop_display = new function ($, edit_mode, getEntityName, getEntityRole, get
const
allTypes
=
await
this
.
_getRecordTypes
(
conf
);
var
entities
=
this
.
getEntitiesInView
();
this
.
unhideProperties
(
entities
,
conf
,
allTypes
);
edit_mode
.
app
.
onAfterShowResults
=
this
.
_unhidePropertiesWrapper
(
edit_mode
.
app
.
onAfterShowResults
,
conf
,
allTypes
);
// If we are in the edit mode, (un)hide properties after ending
// the editing of an entity
document
.
body
.
addEventListener
(
edit_mode
.
start_edit
.
type
,
(
e
)
=>
{
edit_mode
.
app
.
onAfterShowResults
=
this
.
_unhidePropertiesWrapper
(
edit_mode
.
app
.
onAfterShowResults
,
conf
,
allTypes
);
},
true
);
}
else
{
this
.
unhideAllProperties
();
// also unhide properties when leaving the edit mode
// TODO(fspreck): We're lacking a proper state/event here in the
// edit mode, so do this on "init", since this is the state to which
// the state machine returns after either successfully saving an
// entity or canceling the edit.
edit_mode
.
app
.
onAfterShowResults
=
this
.
_unhideAllPropertiesWrapper
(
edit_mode
.
app
.
onAfterShowResults
);
document
.
body
.
addEventListener
(
edit_mode
.
start_edit
.
type
,
(
e
)
=>
{
// also unhide properties when leaving the edit mode
// TODO(fspreck): We're lacking a proper state/event here in the
// edit mode, so do this on "init", since this is the state to which
// the state machine returns after either successfully saving an
// entity or canceling the edit.
edit_mode
.
app
.
onAfterShowResults
=
this
.
_unhideAllPropertiesWrapper
(
edit_mode
.
app
.
onAfterShowResults
);
},
true
);
}
}
}(
$
,
edit_mode
,
getEntityName
,
getEntityRole
,
getPropertyElements
,
getPropertyName
,
getUserName
,
getUserRoles
,
log
.
getLogger
(
"
ext_prop_display
"
),
load_config
,
query
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment