summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/environment.vue
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-05-10 14:21:58 +0100
committerFilipa Lacerda <filipa@gitlab.com>2017-05-10 14:21:58 +0100
commitcc8073653ea5f4bf54026b849f1e0b23a10de15a (patch)
tree4dce464e49374b1c67f86f006415bbbc7ecbfa7d /app/assets/javascripts/environments/components/environment.vue
parenta3074085cd01c0c062cb5f07e848375714dfd6d0 (diff)
parent09c2aab4aa4661b147545e2c41b6a0100fc57b11 (diff)
downloadgitlab-ce-30286-vue-loadin-icon.tar.gz
Merge branch 'master' into 30286-vue-loadin-icon30286-vue-loadin-icon
* master: (62 commits) Fix broken test - load correct data Remove redirect for old issue url containing id instead of iid Use vue file for table pagination component stub error handlers where uncaught Promise rejections currently exist Revert "Fix OpenID spec failure that assumed current_sign_in_at would be set" Add :redis keyword to some specs clear state of trackable attributes Fix OpenID spec failure that assumed current_sign_in_at would be set Kubernetes Helm Chart Install docs Add Repository subnav to 'Find files' Make tree, blob and blame pages more consistent Add screenshots to Triggered Build docs Add Prometheus memory sparkline to MR widget Fix test failure in job vue componenFix test failure in job vue componentt Remove unnecessary if check Fix links in code review docs Improve readability of code Remove some unused Gitlab::Git code Use Rails 'delegate' Remove CI/CD models directory from `eager_load_paths` Don't make Commit#raw_deltas private ...
Diffstat (limited to 'app/assets/javascripts/environments/components/environment.vue')
-rw-r--r--app/assets/javascripts/environments/components/environment.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/environments/components/environment.vue b/app/assets/javascripts/environments/components/environment.vue
index 3458d5d8da7..d4e13f3c84a 100644
--- a/app/assets/javascripts/environments/components/environment.vue
+++ b/app/assets/javascripts/environments/components/environment.vue
@@ -1,18 +1,18 @@
<script>
/* global Flash */
import EnvironmentsService from '../services/environments_service';
-import EnvironmentTable from './environments_table.vue';
+import environmentTable from './environments_table.vue';
import EnvironmentsStore from '../stores/environments_store';
-import TablePaginationComponent from '../../vue_shared/components/table_pagination';
import loadingIcon from '../../vue_shared/components/loading_icon.vue';
+import tablePagination from '../../vue_shared/components/table_pagination.vue';
import '../../lib/utils/common_utils';
import eventHub from '../event_hub';
export default {
components: {
- 'environment-table': EnvironmentTable,
- 'table-pagination': TablePaginationComponent,
+ environmentTable,
+ tablePagination,
loadingIcon,
},