chore(prettier): fix all files

This commit is contained in:
Elian Doran
2025-01-09 18:07:02 +02:00
parent 19ee861699
commit 4cbb529fd4
571 changed files with 23226 additions and 23940 deletions

View File

@@ -1,11 +1,11 @@
import server from './server.js';
import froca from './froca.js';
import FNote from '../entities/fnote.js';
import { AttributeRow } from './load_results.js';
import server from "./server.js";
import froca from "./froca.js";
import FNote from "../entities/fnote.js";
import { AttributeRow } from "./load_results.js";
async function addLabel(noteId: string, name: string, value: string = "") {
await server.put(`notes/${noteId}/attribute`, {
type: 'label',
type: "label",
name: name,
value: value
});
@@ -13,7 +13,7 @@ async function addLabel(noteId: string, name: string, value: string = "") {
async function setLabel(noteId: string, name: string, value: string = "") {
await server.put(`notes/${noteId}/set-attribute`, {
type: 'label',
type: "label",
name: name,
value: value
});
@@ -68,4 +68,4 @@ export default {
setLabel,
removeAttributeById,
isAffecting
}
};