diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-10-09 14:34:53 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-10-09 14:34:53 -0700 |
commit | 3c12d27c1754579c87be7d6729add9e592b1ba4a (patch) | |
tree | 98c2a293cb3babc1ccba3f3803e689177fdb88ca /core | |
parent | 9e047e9bca80cdf11c3515c74892f19b12fd8fbd (diff) | |
download | nextcloud-server-3c12d27c1754579c87be7d6729add9e592b1ba4a.tar.gz nextcloud-server-3c12d27c1754579c87be7d6729add9e592b1ba4a.zip |
chore: Add text file icon class
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/icons.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/icons.js b/core/src/icons.js index b46101d650c..5845b01fea1 100644 --- a/core/src/icons.js +++ b/core/src/icons.js @@ -179,6 +179,10 @@ const iconsColor = { path: path.join(__dirname, '../img', 'filetypes', 'text.svg'), color: 'grey', }, + 'file-text': { + path: path.join(__dirname, '../img', 'filetypes', 'text.svg'), + color: 'black', + }, } // use this to define aliases to existing icons |