fix: (agenda) descricao melhorada para titulo das colunas da listagem dos eventos

This commit is contained in:
NANDO9322 2026-01-16 16:22:34 -03:00
parent 1b55707f90
commit 0a4f53748b

View file

@ -408,40 +408,40 @@ export const EventTable: React.FC<EventTableProps> = ({
{/* Novas colunas de gestão de equipe */}
{(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.
</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.
</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.
</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.
</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.
</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
</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.
</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
</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?
</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.
</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.
</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.
</th>
</>