isSensitive

This commit is contained in:
mattyatea 2023-10-07 20:14:29 +09:00
parent abb79a0b36
commit a1094a3efc
1 changed files with 6 additions and 4 deletions

View File

@ -61,10 +61,12 @@ onMounted(() => {
}).then(notes => {
for (const note of notes) {
for (const file of note.files) {
files.push({
note,
file,
});
if (file.isSensitive){
files.push({
note,
file,
});
}
}
}
fetching = false;