Skip to content

Commit bee2765

Browse files
committed
rename
1 parent 719deaf commit bee2765

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

frontend/src/ts/pages/account.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ function buildResultRow(result: SnapshotResult<Mode>): HTMLTableRowElement {
124124
if (result.tags !== undefined && result.tags.length > 0) {
125125
tagNames = "";
126126
result.tags.forEach((tag) => {
127-
const snaptag = getTag(tag);
128-
if (snaptag !== undefined) {
129-
tagNames += snaptag.display + ", ";
127+
const localTag = getTag(tag);
128+
if (localTag !== undefined) {
129+
tagNames += localTag.display + ", ";
130130
}
131131
});
132132
tagNames = tagNames.substring(0, tagNames.length - 2);
@@ -983,9 +983,9 @@ export function updateTagsForResult(resultId: string, tagIds: string[]): void {
983983

984984
if (tagIds.length > 0) {
985985
for (const tag of tagIds) {
986-
const snaptag = getTag(tag);
987-
if (snaptag !== undefined) {
988-
tagNames.push(snaptag.display);
986+
const localTag = getTag(tag);
987+
if (localTag !== undefined) {
988+
tagNames.push(localTag.display);
989989
}
990990
}
991991
}

0 commit comments

Comments
 (0)