Browse Source

🐛 Fix conditions for other icons (#20942)

pull/20954/head
DiamondYuan 5 years ago
committed by 二货机器人
parent
commit
1fbc2d3fe9
  1. 2
      site/theme/template/IconDisplay/fields.ts

2
site/theme/template/IconDisplay/fields.ts

@ -204,7 +204,7 @@ const logo = [
const datum = [...direction, ...suggestion, ...editor, ...data, ...logo];
const other = all.filter(n => datum.includes(n));
const other = all.filter(n => !datum.includes(n));
export const categories = {
direction,

Loading…
Cancel
Save