mirror of https://github.com/sualko/cloud_bbb
Compare commits
No commits in common. "122cf10f6086ae97214d6109b19e7a5636f45e27" and "be15e937304fe2da2e24b6819449e3c8f5978ceb" have entirely different histories.
122cf10f60
...
be15e93730
|
@ -193,11 +193,7 @@ const RoomRow: React.FC<Props> = (props) => {
|
||||||
<>
|
<>
|
||||||
<tr className={showRecordings ? 'selected-row' : ''}>
|
<tr className={showRecordings ? 'selected-row' : ''}>
|
||||||
<td className="start">
|
<td className="start">
|
||||||
<a href={api.getRoomUrl(room)}
|
<a href={api.getRoomUrl(room)} className={`button ${room.running ? 'success' : 'primary'}`} target="_blank" rel="noopener noreferrer" title={t('bbb', 'Open room')}>
|
||||||
className={`button ${room.running ? 'success' : 'primary'}`}
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
title={t('bbb', 'Open room')}>
|
|
||||||
{room.running ? t('bbb', 'Join') : t('bbb', 'Start')}
|
{room.running ? t('bbb', 'Join') : t('bbb', 'Start')}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
@ -235,10 +231,7 @@ const RoomRow: React.FC<Props> = (props) => {
|
||||||
<EditRoom room={props.room} restriction={props.restriction} updateProperty={updateRoom} />
|
<EditRoom room={props.room} restriction={props.restriction} updateProperty={updateRoom} />
|
||||||
</td>
|
</td>
|
||||||
<td className="clone icon-col">
|
<td className="clone icon-col">
|
||||||
<button
|
<button className="action-item" onClick={cloneRow} title={t('bbb', 'Clone Room')}>
|
||||||
className="action-item"
|
|
||||||
onClick={cloneRow}
|
|
||||||
title={t('bbb', 'Clone room')}>
|
|
||||||
<span className="icon icon-template-add icon-visible"></span>
|
<span className="icon icon-template-add icon-visible"></span>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue