Skip to content

Commit

Permalink
refactor: 💡 fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
lisbet-alvarez committed Dec 16, 2024
1 parent 4948e00 commit 43eabbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ui/admin/app/controllers/scopes/scope/workers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default class ScopesScopeWorkersIndexController extends Controller {
description = 'descriptions.neither-list-nor-create';
}
return this.intl.t(description, {
resource: this.intl.t('resources.worker.title_plural'),
resource: this.intl.t('titles.workers'),
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ module('Unit | Controller | scopes/scope/workers/index', function (hooks) {
assert.strictEqual(
controller.messageDescription,
intl.t('descriptions.create-but-not-list', {
resource: intl.t('resources.worker.title_plural'),
resource: intl.t('titles.workers'),
}),
);
});
Expand All @@ -142,7 +142,7 @@ module('Unit | Controller | scopes/scope/workers/index', function (hooks) {
assert.strictEqual(
controller.messageDescription,
intl.t('descriptions.neither-list-nor-create', {
resource: intl.t('resources.worker.title_plural'),
resource: intl.t('titles.workers'),
}),
);
});
Expand Down

0 comments on commit 43eabbc

Please sign in to comment.