(a)
| 4698 | } |
| 4699 | |
| 4700 | function formatAssetMeta(a) { |
| 4701 | const bits = []; |
| 4702 | if (a && a.kind) bits.push(a.kind); |
| 4703 | if (a && a.width && a.height) bits.push(`${a.width}×${a.height}`); |
| 4704 | if (a && a.dataUrl) bits.push("embedded"); |
| 4705 | return bits.join(" · "); |
| 4706 | } |
| 4707 | |
| 4708 | function renderAssets() { |
| 4709 | if (!assetsList) return; |