From 322eafe41d90fbc828dfdd0c8ee2f8ac79fb3b88 Mon Sep 17 00:00:00 2001 From: Exitare Date: Thu, 19 Dec 2024 03:09:53 -0800 Subject: [PATCH] chore(Creature): update creature template to reroute to the new creature model viewer. (#3204) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Stefano Borzì --- .../src/creature-template/creature-template.component.html | 4 +++- .../src/creature-template/creature-template.component.ts | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/libs/features/creature/src/creature-template/creature-template.component.html b/libs/features/creature/src/creature-template/creature-template.component.html index cbc05ac6985..44bd7d08698 100644 --- a/libs/features/creature/src/creature-template/creature-template.component.html +++ b/libs/features/creature/src/creature-template/creature-template.component.html @@ -230,7 +230,9 @@ {{ 'CREATURE.TEMPLATE.MODELS' | translate }} - Models will be added in a future Keira3 release in a new editor tab. + Models are now available in the Creature Template Model editor. diff --git a/libs/features/creature/src/creature-template/creature-template.component.ts b/libs/features/creature/src/creature-template/creature-template.component.ts index 8f82f52997a..de1fe533dc9 100644 --- a/libs/features/creature/src/creature-template/creature-template.component.ts +++ b/libs/features/creature/src/creature-template/creature-template.component.ts @@ -40,6 +40,7 @@ import { TranslateModule } from '@ngx-translate/core'; import { TooltipModule } from 'ngx-bootstrap/tooltip'; import { CreatureHandlerService } from '../creature-handler.service'; import { CreatureTemplateService } from './creature-template.service'; +import { RouterLink } from '@angular/router'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, @@ -62,6 +63,7 @@ import { CreatureTemplateService } from './creature-template.service'; GenericOptionSelectorComponent, BooleanOptionSelectorComponent, IconSelectorComponent, + RouterLink, ], }) export class CreatureTemplateComponent extends SingleRowEditorComponent {