From 5af80b1b4a13f59fbd688f6aaef392efe69352d5 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Sat, 9 Sep 2023 06:49:35 +0900 Subject: [PATCH] [fix] chat connection naming promblem --- src/ts/process/templates/templateCheck.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ts/process/templates/templateCheck.ts b/src/ts/process/templates/templateCheck.ts index 11c054b2..46e05f5b 100644 --- a/src/ts/process/templates/templateCheck.ts +++ b/src/ts/process/templates/templateCheck.ts @@ -1,3 +1,4 @@ +import { cloneDeep } from 'lodash' import type { Database } from 'src/ts/storage/database' export function templateCheck(db:Database){ @@ -71,7 +72,7 @@ export function templateCheck(db:Database){ } if(unresolvedRanges.length > 0){ - warnings.push('Unresolved chat ranges: ' + unresolvedRanges.join(', ')) + warnings.push(`Chat are not connected: [${unresolvedRanges.join(', ')}]`) } return warnings