vision refactor
This commit is contained in:
parent
925fa95da4
commit
bb4b40d63c
@ -789,7 +789,7 @@ export default function VisionPage() {
|
||||
Espaces de réunion
|
||||
</h1>
|
||||
<p className="text-gray-600">
|
||||
Sélectionnez un groupe ou une mission pour accéder à son espace de réunion Jitsi
|
||||
Voir Grand, Commencer Petit et Rester Constant
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@ -998,9 +998,9 @@ export default function VisionPage() {
|
||||
{getMeetingsForDate(selectedDate).map((meeting) => (
|
||||
<div
|
||||
key={meeting.id}
|
||||
className="bg-gray-50 rounded-lg border border-gray-200 p-3 flex items-center justify-between"
|
||||
className="bg-gray-50 rounded-lg border border-gray-200 p-3"
|
||||
>
|
||||
<div>
|
||||
<div className="flex-1">
|
||||
<h4 className="font-medium text-gray-900">
|
||||
{meeting.title || `${meeting.type === "group" ? "Groupe" : "Mission"}: ${meeting.entityName}`}
|
||||
</h4>
|
||||
@ -1011,16 +1011,6 @@ export default function VisionPage() {
|
||||
{formatTimeRange(meeting)}
|
||||
</p>
|
||||
</div>
|
||||
{canJoinMeeting(meeting) && meeting.location && (
|
||||
<Button
|
||||
size="sm"
|
||||
className="bg-blue-600 hover:bg-blue-700 text-white"
|
||||
onClick={() => handleConferenceClick(meeting.type, meeting.entityId, meeting.entityName, meeting.location)}
|
||||
>
|
||||
<Video className="h-4 w-4 mr-1" />
|
||||
Rejoindre
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user