chat ikona misto barvicek
All checks were successful
ci/woodpecker/push/workflow Pipeline was successful

This commit is contained in:
batmanisko 2025-11-03 13:36:54 +01:00
parent 0781b84f11
commit d29c7863dd

View File

@ -10,7 +10,7 @@ import PizzaOrderList from './components/PizzaOrderList';
import SelectSearch, { SelectedOptionValue, SelectSearchOption } from 'react-select-search';
import 'react-select-search/style.css';
import './App.scss';
import { faCircleCheck, faNoteSticky, faTrashCan } from '@fortawesome/free-regular-svg-icons';
import { faCircleCheck, faNoteSticky, faTrashCan, faComment } from '@fortawesome/free-regular-svg-icons';
import { useSettings } from './context/settings';
import Footer from './components/Footer';
import { faChainBroken, faChevronLeft, faChevronRight, faGear, faSatelliteDish, faSearch } from '@fortawesome/free-solid-svg-icons';
@ -542,7 +542,7 @@ function App() {
{login}
{userPayload.departureTime && <small> ({userPayload.departureTime})</small>}
{userPayload.note && <small
style={{ overflowWrap: 'anywhere', cursor: 'pointer', color: '#0d6efd' }}
style={{ overflowWrap: 'anywhere', cursor: 'pointer' }}
title="Kliknutím zkopírujete poznámku"
onClick={() => copyNote(userPayload.note!)}
onKeyDown={(e) => {
@ -553,7 +553,7 @@ function App() {
}}
tabIndex={0}
role="button"
> ({userPayload.note})</small>}
> <FontAwesomeIcon icon={faComment} style={{ marginRight: '4px' }} />({userPayload.note})</small>}
{login === auth.login && canChangeChoice && <span title='Upravit poznámku'>
<FontAwesomeIcon onClick={() => {
setNoteModalOpen(true);