diff --git a/awx/ui/client/lib/components/_index.less b/awx/ui/client/lib/components/_index.less index c586cb296e..7beb200a10 100644 --- a/awx/ui/client/lib/components/_index.less +++ b/awx/ui/client/lib/components/_index.less @@ -9,7 +9,7 @@ @import 'relaunchButton/_index'; @import 'tabs/_index'; @import 'tag/_index'; -@import 'toggle/_index'; +@import 'toggle-tag/_index'; @import 'truncate/_index'; @import 'utility/_index'; @import 'code-mirror/_index'; diff --git a/awx/ui/client/lib/components/index.js b/awx/ui/client/lib/components/index.js index 27675f598f..aa18751d17 100644 --- a/awx/ui/client/lib/components/index.js +++ b/awx/ui/client/lib/components/index.js @@ -33,7 +33,7 @@ import sideNavItem from '~components/layout/side-nav-item.directive'; import tab from '~components/tabs/tab.directive'; import tabGroup from '~components/tabs/group.directive'; import tag from '~components/tag/tag.directive'; -import toggleTag from '~components/toggle/toggle-tag.directive'; +import toggleTag from '~components/toggle-tag/toggle-tag.directive'; import topNavItem from '~components/layout/top-nav-item.directive'; import truncate from '~components/truncate/truncate.directive'; import atCodeMirror from '~components/code-mirror'; diff --git a/awx/ui/client/lib/components/toggle/_index.less b/awx/ui/client/lib/components/toggle-tag/_index.less similarity index 100% rename from awx/ui/client/lib/components/toggle/_index.less rename to awx/ui/client/lib/components/toggle-tag/_index.less diff --git a/awx/ui/client/lib/components/toggle/constants.js b/awx/ui/client/lib/components/toggle-tag/constants.js similarity index 100% rename from awx/ui/client/lib/components/toggle/constants.js rename to awx/ui/client/lib/components/toggle-tag/constants.js diff --git a/awx/ui/client/lib/components/toggle/toggle-tag.directive.js b/awx/ui/client/lib/components/toggle-tag/toggle-tag.directive.js similarity index 93% rename from awx/ui/client/lib/components/toggle/toggle-tag.directive.js rename to awx/ui/client/lib/components/toggle-tag/toggle-tag.directive.js index a60c253a8c..1fc7c02990 100644 --- a/awx/ui/client/lib/components/toggle/toggle-tag.directive.js +++ b/awx/ui/client/lib/components/toggle-tag/toggle-tag.directive.js @@ -1,6 +1,6 @@ import { TRUNCATED, TRUNCATE_LENGTH } from './constants'; -const templateUrl = require('~components/toggle/toggle-tag.partial.html'); +const templateUrl = require('~components/toggle-tag/toggle-tag.partial.html'); function controller ($scope, TagService, strings) { const { tags } = $scope; diff --git a/awx/ui/client/lib/components/toggle/toggle-tag.partial.html b/awx/ui/client/lib/components/toggle-tag/toggle-tag.partial.html similarity index 100% rename from awx/ui/client/lib/components/toggle/toggle-tag.partial.html rename to awx/ui/client/lib/components/toggle-tag/toggle-tag.partial.html