We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49b0f2 commit 3028567Copy full SHA for 3028567
src/ui/suggestion-factory.ts
@@ -289,13 +289,17 @@ function createMetaDiv(args: {
289
text: key,
290
});
291
292
+ const frontMatterValueDiv = createDiv({
293
+ cls: "another-quick-switcher__item__meta__front_matter__values",
294
+ });
295
for (const v of [value].flat().filter(isPresent)) {
- frontMatterDiv.createSpan({
296
+ frontMatterValueDiv.createSpan({
297
cls: "another-quick-switcher__item__meta__front_matter__value",
298
title: v.toString(),
299
text: v.toString(),
300
301
}
302
+ frontMatterDiv.appendChild(frontMatterValueDiv);
303
304
frontMattersDiv.appendChild(frontMatterDiv);
305
0 commit comments