summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/actions.js
diff options
context:
space:
mode:
authorPaul Slaughter <pslaughter@gitlab.com>2018-09-27 16:57:30 -0500
committerPaul Slaughter <pslaughter@gitlab.com>2018-09-28 15:03:39 -0500
commitadbf6149cf1778cd48a9bbf8e97332669dbcb7cb (patch)
tree01f53873bc7dbe0b04d8de8182af359e21ecc2b4 /app/assets/javascripts/ide/stores/actions.js
parent1eefdf5da50030fbc342a08155ed4aa56805aea9 (diff)
downloadgitlab-ce-adbf6149cf1778cd48a9bbf8e97332669dbcb7cb.tar.gz
Keep IDE RightPane views aliveide-keep-right-pane-tabs-alive
**Why?** - This is needed for the Web Terminal feature. https://gitlab.com/gitlab-org/gitlab-ee/issues/5426 **Notes:** - Introduces a `pane` Vuex module. - Some views should not be kept alive (i.e. job details). This is why a `keepAlive` flag was introduced for views.
Diffstat (limited to 'app/assets/javascripts/ide/stores/actions.js')
-rw-r--r--app/assets/javascripts/ide/stores/actions.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/assets/javascripts/ide/stores/actions.js b/app/assets/javascripts/ide/stores/actions.js
index b8b64aead30..e10a132ab4b 100644
--- a/app/assets/javascripts/ide/stores/actions.js
+++ b/app/assets/javascripts/ide/stores/actions.js
@@ -184,10 +184,6 @@ export const burstUnusedSeal = ({ state, commit }) => {
}
};
-export const setRightPane = ({ commit }, view) => {
- commit(types.SET_RIGHT_PANE, view);
-};
-
export const setLinks = ({ commit }, links) => commit(types.SET_LINKS, links);
export const setErrorMessage = ({ commit }, errorMessage) =>