fix: (agenda) descricao melhorada para titulo das colunas da listagem dos eventos
This commit is contained in:
parent
1b55707f90
commit
0a4f53748b
1 changed files with 12 additions and 12 deletions
|
|
@ -408,40 +408,40 @@ export const EventTable: React.FC<EventTableProps> = ({
|
||||||
{/* Novas colunas de gestão de equipe */}
|
{/* Novas colunas de gestão de equipe */}
|
||||||
{(userRole === UserRole.BUSINESS_OWNER || userRole === UserRole.SUPERADMIN) && (
|
{(userRole === UserRole.BUSINESS_OWNER || userRole === UserRole.SUPERADMIN) && (
|
||||||
<>
|
<>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Quantidade de Formandos">
|
||||||
QTD Form.
|
QTD Form.
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Quantidade de Fotógrafos">
|
||||||
Fotóg.
|
Fotóg.
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Quantidade de Recepcionistas">
|
||||||
Recep.
|
Recep.
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Quantidade de Cinegrafistas">
|
||||||
Cine.
|
Cine.
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Quantidade de Estúdios">
|
||||||
Estúd.
|
Estúd.
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Pontos de Foto">
|
||||||
Pts. Foto
|
Pts. Foto
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Pontos Decorados">
|
||||||
Pts. Dec.
|
Pts. Dec.
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Pontos de LED">
|
||||||
Pts. LED
|
Pts. LED
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Profissionais Confirmados?">
|
||||||
Prof. OK?
|
Prof. OK?
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Fotógrafos Faltantes/Pendentes">
|
||||||
Fot. Falt.
|
Fot. Falt.
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Recepcionistas Faltantes/Pendentes">
|
||||||
Rec. Falt.
|
Rec. Falt.
|
||||||
</th>
|
</th>
|
||||||
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider">
|
<th className="px-3 py-3 text-center text-xs font-semibold text-gray-600 uppercase tracking-wider" title="Cinegrafistas Faltantes/Pendentes">
|
||||||
Cin. Falt.
|
Cin. Falt.
|
||||||
</th>
|
</th>
|
||||||
</>
|
</>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue