Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
fee37972
Commit
fee37972
authored
Feb 19, 2020
by
Simon Knox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused reload property from board_store
This might have done something once but it doesn't anymore
parent
434b7047
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
20 deletions
+0
-20
app/assets/javascripts/boards/components/boards_selector.vue
app/assets/javascripts/boards/components/boards_selector.vue
+0
-18
app/assets/javascripts/boards/stores/boards_store.js
app/assets/javascripts/boards/stores/boards_store.js
+0
-2
No files found.
app/assets/javascripts/boards/components/boards_selector.vue
View file @
fee37972
...
...
@@ -110,14 +110,6 @@ export default {
board
.
name
.
toLowerCase
().
includes
(
this
.
filterTerm
.
toLowerCase
()),
);
},
reload
:
{
get
()
{
return
this
.
state
.
reload
;
},
set
(
newValue
)
{
this
.
state
.
reload
=
newValue
;
},
},
board
()
{
return
this
.
state
.
currentBoard
;
},
...
...
@@ -142,16 +134,6 @@ export default {
this
.
scrollFadeInitialized
=
false
;
this
.
$nextTick
(
this
.
setScrollFade
);
},
reload
()
{
if
(
this
.
reload
)
{
this
.
boards
=
[];
this
.
recentBoards
=
[];
this
.
loading
=
true
;
this
.
reload
=
false
;
this
.
loadBoards
(
false
);
}
},
},
created
()
{
boardsStore
.
setCurrentBoard
(
this
.
currentBoard
);
...
...
app/assets/javascripts/boards/stores/boards_store.js
View file @
fee37972
...
...
@@ -30,7 +30,6 @@ const boardsStore = {
labels
:
[],
},
currentPage
:
''
,
reload
:
false
,
endpoints
:
{},
},
detail
:
{
...
...
@@ -61,7 +60,6 @@ const boardsStore = {
};
},
showPage
(
page
)
{
this
.
state
.
reload
=
false
;
this
.
state
.
currentPage
=
page
;
},
addList
(
listObj
,
defaultAvatar
)
{
...
...
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