Skip to content

Commit 1f3612b

Browse files
committed
silence noisy log
1 parent 469bc8d commit 1f3612b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common-ui/src/components/TagsInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export default defineComponent({
152152
async updateAvailableCourseTags() {
153153
try {
154154
this.availableCourseTags = (await this.courseDB!.getCourseTagStubs()).rows.map((row) => {
155-
console.log(`[TagsInput] available tag: ${JSON.stringify(row)}`);
155+
// console.log(`[TagsInput] available tag: ${JSON.stringify(row)}`);
156156
return row.doc! as Tag;
157157
});
158158
} catch (e) {

0 commit comments

Comments
 (0)