mirror of https://github.com/rancher/dashboard.git
14 lines
364 B
JavaScript
14 lines
364 B
JavaScript
import { escapeHtml } from '@/utils/string';
|
|
|
|
export default {
|
|
groupByLabel() {
|
|
const name = this.metadata.namespace;
|
|
|
|
if ( name ) {
|
|
return this.$rootGetters['i18n/t']('resourceTable.groupLabel.workspace', { name: escapeHtml(name) });
|
|
} else {
|
|
return this.$rootGetters['i18n/t']('resourceTable.groupLabel.notInAWorkspace');
|
|
}
|
|
},
|
|
};
|