diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2023-12-08 10:40:31 +0200 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2023-12-12 20:24:12 +0200 |
commit | a9b06db126d329ff941fa0b87163526696afe15e (patch) | |
tree | 5a29dbfdb9f8e716bef028b15d0c8579c0fe2320 /themes/luci-theme-openwrt-2020 | |
parent | 84da02bc09de21e105edc4495b6f13a0b8095fee (diff) |
luci-theme-openwrt-2020: remove icon explicit svg type
That was a fix for old browsers when the mime type is incorrect.
Today all servers return a correct mime but also browsers can sniff a type.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
Diffstat (limited to 'themes/luci-theme-openwrt-2020')
-rw-r--r-- | themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut b/themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut index 2b7c581387..fa9dea47b7 100644 --- a/themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut +++ b/themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut @@ -19,7 +19,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <link rel="stylesheet" type="text/css" media="screen" href="{{ media }}/cascade.css" /> -<link rel="icon" href="{{ media }}/logo.svg" type="image/svg+xml" /> +<link rel="icon" href="{{ media }}/logo.svg" /> <link rel="apple-touch-icon" href="{{ media }}/logo.png" /> <script type="text/javascript" src="{{ dispatcher.build_url('admin/translations', dispatcher.lang) }}"></script> <script type="text/javascript" src="{{ resource }}/cbi.js"></script> |