Skip to content
Snippets Groups Projects
Unverified Commit 5305517e authored by Dennis1993's avatar Dennis1993 Committed by GitHub
Browse files

Color room state for better overview (#5280)


* Color room state

bring colors to the state of a room for better overview

* Update ServerRoomRow.jsx

---------

Co-authored-by: default avatarAhmad Farhat <ahmad.farhat@blindsidenetworks.com>
parent 886f69ec
No related branches found
No related tags found
No related merge requests found
...@@ -58,9 +58,9 @@ export default function ServerRoomRow({ room }) { ...@@ -58,9 +58,9 @@ export default function ServerRoomRow({ room }) {
const meetingRunning = () => { const meetingRunning = () => {
if (online) { if (online) {
return <td className="border-0 text-success"> { t('admin.server_rooms.running') } </td>; return <td className="border-0 text-success"><span className="badge bg-success"> { t('admin.server_rooms.running') } </span></td>;
} }
return <td className="border-0"> { t('admin.server_rooms.not_running') } </td>; return <td className="border-0"><span className="badge bg-danger"> { t('admin.server_rooms.not_running') } </span></td>;
}; };
return ( return (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment