diff --git a/contentcuration/contentcuration/frontend/channelList/views/Channel/CatalogList.vue b/contentcuration/contentcuration/frontend/channelList/views/Channel/CatalogList.vue index 17fa852e0d..0eb5a48c65 100644 --- a/contentcuration/contentcuration/frontend/channelList/views/Channel/CatalogList.vue +++ b/contentcuration/contentcuration/frontend/channelList/views/Channel/CatalogList.vue @@ -17,7 +17,7 @@

- {{ $tr('resultsText', { count: page.count }) }} + {{ $tr("resultsText", { count: page.count }) }}

- + - + - - {{ $tr('channelSelectionCount', { count: selectedCount }) }} + {{ $tr("channelSelectionCount", { count: selectedCount }) }} - {{ $tr('cancelButton') }} + {{ $tr("cancelButton") }} - {{ $tr('downloadPDF') }} + {{ $tr("downloadPDF") }} - {{ $tr('downloadCSV') }} + {{ $tr("downloadCSV") }} - - + @@ -118,7 +111,7 @@ import ChannelItem from './ChannelItem'; import LoadingText from 'shared/views/LoadingText'; import Pagination from 'shared/views/Pagination'; - import BottomToolBar from 'shared/views/BottomToolBar'; + import BottomBar from 'shared/views/BottomBar'; import Checkbox from 'shared/views/form/Checkbox'; import ToolBar from 'shared/views/ToolBar'; import OfflineText from 'shared/views/OfflineText'; @@ -132,7 +125,7 @@ LoadingText, CatalogFilters, Pagination, - BottomToolBar, + BottomBar, Checkbox, ToolBar, OfflineText, @@ -145,17 +138,17 @@ selecting: false, /* - jayoshih: router guard makes it difficult to track - differences between previous query params and new - query params, so just track it manually - */ + jayoshih: router guard makes it difficult to track + differences between previous query params and new + query params, so just track it manually + */ previousQuery: this.$route.query, /* - jayoshih: using excluded logic here instead of selected - to account for selections across pages (some channels - not in current page) - */ + jayoshih: using excluded logic here instead of selected + to account for selections across pages (some channels + not in current page) + */ excluded: [], }; }, diff --git a/contentcuration/contentcuration/frontend/shared/views/BottomBar.vue b/contentcuration/contentcuration/frontend/shared/views/BottomBar.vue index ca0182341f..03202e099e 100644 --- a/contentcuration/contentcuration/frontend/shared/views/BottomBar.vue +++ b/contentcuration/contentcuration/frontend/shared/views/BottomBar.vue @@ -1,6 +1,6 @@