DEV: Namespace components
This commit is contained in:
parent
70cd87df7a
commit
196abc9b21
|
@ -1 +1 @@
|
|||
{{upgrade-notice versionCheck=versionCheck}}
|
||||
{{docker-manager/upgrade-notice versionCheck=versionCheck}}
|
|
@ -40,7 +40,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
{{#each this.model as |repo|}}
|
||||
<RepoStatus
|
||||
<DockerManager::RepoStatus
|
||||
@repo={{repo}}
|
||||
@upgradingRepo={{repo.upgrading}}
|
||||
@managerRepo={{this.managerRepo}}
|
||||
|
|
|
@ -1 +1 @@
|
|||
<Console @output={{model.output}} />
|
||||
<DockerManager::Console @output={{model.output}} />
|
|
@ -1,6 +1,6 @@
|
|||
<h1>{{this.title}}</h1>
|
||||
|
||||
<ProgressBar @percent={{this.upgradeStore.progressPercentage}} />
|
||||
<DockerManager::ProgressBar @percent={{this.upgradeStore.progressPercentage}} />
|
||||
|
||||
{{#if this.complete}}
|
||||
<p>{{i18n "admin.docker.upgrade_successful"}}</p>
|
||||
|
@ -35,4 +35,4 @@
|
|||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
<Console @output={{this.upgradeStore.consoleOutput}} @followOutput={{true}} />
|
||||
<DockerManager::Console @output={{this.upgradeStore.consoleOutput}} @followOutput={{true}} />
|
|
@ -52,7 +52,7 @@ module("Integration | Component | RepoStatus", function (hooks) {
|
|||
this.set("managerRepo", store.createRecord("repo", managerProps));
|
||||
|
||||
await render(
|
||||
hbs`<RepoStatus @repo={{this.repo}} @managerRepo={{this.managerRepo}} />`
|
||||
hbs`<DockerManager::RepoStatus @repo={{this.repo}} @managerRepo={{this.managerRepo}} />`
|
||||
);
|
||||
|
||||
assert
|
||||
|
@ -93,7 +93,7 @@ module("Integration | Component | RepoStatus", function (hooks) {
|
|||
this.set("managerRepo", store.createRecord("repo", managerProps));
|
||||
|
||||
await render(
|
||||
hbs`<RepoStatus @repo={{this.repo}} @managerRepo={{this.managerRepo}} />`
|
||||
hbs`<DockerManager::RepoStatus @repo={{this.repo}} @managerRepo={{this.managerRepo}} />`
|
||||
);
|
||||
|
||||
assert
|
||||
|
@ -114,7 +114,7 @@ module("Integration | Component | RepoStatus", function (hooks) {
|
|||
this.set("managerRepo", store.createRecord("repo", managerProps));
|
||||
|
||||
await render(
|
||||
hbs`<RepoStatus @repo={{this.repo}} @managerRepo={{this.managerRepo}} />`
|
||||
hbs`<DockerManager::RepoStatus @repo={{this.repo}} @managerRepo={{this.managerRepo}} />`
|
||||
);
|
||||
|
||||
assert
|
||||
|
|
Loading…
Reference in New Issue