Merge remote-tracking branches 'origin/sub_laptop_2' and 'origin/sub_laptop_3' into main_laptop_1

This commit is contained in:
2026-09-24 12:15:11 +09:00
2 changed files with 8 additions and 2 deletions
@@ -46,7 +46,7 @@ function toFragments(pieces: TextPiece[], ctx: DetailContext): Fragment[] {
const open = (): void => {
if (!ref) return openNoteModal(piece., tl("Pill_NoPick"));
if (piece.kind === "표")
openTableModal({ title: piece.글, table: ref.키, row: ref., col: ref.열 });
openTableModal({ title: piece.글, table: ref.키, row: ref. ?? ref., col: ref.열 });
else if (piece.kind === "요소")
openRefModal({ title: piece.글, ref: ref.키, prices: ctx.prices });
else openLogic(ref.);
@@ -103,7 +103,13 @@ export type CalcAnswer =
export interface TextPiece {
kind: "요소" | "표" | "로직" | "값" | "기호" | "글";
: string;
?: { 테이블?: string; : string; 행?: string | number | null; 열?: string | null };
?: {
테이블?: string;
: string;
행?: string | number | null;
줄?: number;
열?: string | null;
};
깊이?: number;
}
export interface TextLine {