Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
Vue Jama
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
certic
Vue Jama
Commits
37f75acc
Commit
37f75acc
authored
May 19, 2022
by
Jerome Chauveau
Browse files
Options
Downloads
Patches
Plain Diff
masquage du collectionTree dans les onglets autres que la celui de la navigation
parent
e2fcffa1
Branches
Branches containing commit
Tags
v0.4.3
Tags containing commit
No related merge requests found
Pipeline
#15084
passed
May 19, 2022
Stage: release
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
package.json
+1
-1
1 addition, 1 deletion
package.json
src/components/VueJama.vue
+8
-3
8 additions, 3 deletions
src/components/VueJama.vue
with
9 additions
and
4 deletions
package.json
+
1
−
1
View file @
37f75acc
{
"name"
:
"@certic/vue-jama"
,
"version"
:
"0.4.
2
"
,
"version"
:
"0.4.
3
"
,
"scripts"
:
{
"serve"
:
"rimraf -rf ./node_modules/.cache/vue-loader && vue-cli-service serve"
,
"build"
:
"vue-cli-service build"
,
...
...
This diff is collapsed.
Click to expand it.
src/components/VueJama.vue
+
8
−
3
View file @
37f75acc
...
...
@@ -4,7 +4,7 @@
class=
"ma-0 flex-grow-1 main-row"
>
<v-col
v-if=
"currentCollection && treeDrawer"
v-if=
"currentCollection && treeDrawer
&& resourcesMode
"
:cols=
"treeDrawerCols"
class=
"pa-0 ma-0 jama-tree-drawer-cols"
>
...
...
@@ -38,7 +38,7 @@
elevation=
"0"
>
<v-btn
v-if=
"currentCollection"
v-if=
"currentCollection
&& resourcesMode
"
icon
@
click.stop=
"treeDrawer = !treeDrawer"
>
...
...
@@ -516,7 +516,12 @@ export default {
},
mainPaneCols
()
{
let
c
=
this
.
sidePaneVisible
?
(
this
.
rightPaneMaximized
?
5
:
7
)
:
10
;
return
this
.
treeDrawer
&&
this
.
currentCollection
?
c
:
c
+
2
;
c
=
this
.
treeDrawer
&&
this
.
currentCollection
?
c
:
c
+
2
;
if
(
this
.
resourcesMode
)
return
c
;
else
{
return
this
.
sidePaneVisible
?
(
this
.
rightPaneMaximized
?
7
:
9
)
:
12
;
}
},
paginatorCols
()
{
...
...
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