diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-10-09 14:34:53 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-10-10 11:29:53 -0700 |
commit | cae36213958672ed8e0bbffb23dc4f1a64fed01b (patch) | |
tree | f184bbee8430151aa3c865c8ced6f58d40eac0f4 /core | |
parent | d94d23a8bc2875b7bbca7e2e7a7383ec741171fa (diff) | |
download | nextcloud-server-cae36213958672ed8e0bbffb23dc4f1a64fed01b.tar.gz nextcloud-server-cae36213958672ed8e0bbffb23dc4f1a64fed01b.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 |