mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-27 11:59:56 +03:00
cache-busted svg incons in panelOA
This commit is contained in:
parent
6f0cd2891d
commit
29e2bb1c58
1 changed files with 6 additions and 3 deletions
|
@ -7,14 +7,17 @@
|
|||
<button class="main-menu__add-site">+ New Site</button>
|
||||
</li>
|
||||
<li class="task-bar__action">
|
||||
<img class="task-bar__icon" src="./svg/moon.svg" alt="Profile" />
|
||||
<img class="task-bar__icon" src="<.=
|
||||
crate::FILES.get("./static/img/svg/moon.svg").unwrap() .>" alt="Profile" />
|
||||
</li>
|
||||
|
||||
<li class="task-bar__action">
|
||||
<img class="task-bar__icon" src="./svg/bell.svg" alt="Notifications" />
|
||||
<img class="task-bar__icon" src="<.=
|
||||
crate::FILES.get("./static/img/svg/bell.svg").unwrap() .>" alt="Notifications" />
|
||||
</li>
|
||||
|
||||
<li class="task-bar__action">
|
||||
<img class="task-bar__icon" src="../svg/log-out.svg" alt="Profile" />
|
||||
<img class="task-bar__icon" src="<.=
|
||||
crate::FILES.get("./static/img/svg/log-out.svg").unwrap() .>" alt="Profile" />
|
||||
</li>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue