This commit is contained in:
Arkadiusz Wieczorek 2022-01-19 14:30:05 +01:00
parent d26712886e
commit c27bcf2048
3 changed files with 16 additions and 9 deletions

View File

@ -73,6 +73,7 @@ nav {
span { span {
padding-left: 0.5rem; padding-left: 0.5rem;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 500;
} }
} }
} }

View File

@ -128,7 +128,11 @@ const Sidebar = () => {
</button> </button>
<button <button
disabled={!marksOccurrence} disabled={!marksOccurrence}
title={marksOccurrence ? 'Kliknij, aby wygenerować wiadomość': 'Zaznacz poniżej elementy, aby móc wygenerować wiadomość' } title={
marksOccurrence
? 'Kliknij, aby wygenerować wiadomość'
: 'Zaznacz poniżej elementy, aby móc wygenerować wiadomość'
}
onClick={() => { onClick={() => {
const params = [ const params = [
'height=' + screen.height, 'height=' + screen.height,

View File

@ -55,14 +55,7 @@ export function StolenData({
> >
Wyczyść pamięć Wyczyść pamięć
</button> */} </button> */}
<button
onClick={() => {
clusters.forEach((cluster) => cluster.autoMark());
refresh();
}}
>
Zaznacz automatycznie
</button>
{/* <button {/* <button
style={{ marginLeft: '1rem' }} style={{ marginLeft: '1rem' }}
onClick={() => onClick={() =>
@ -76,6 +69,15 @@ export function StolenData({
Generuj maila Generuj maila
</button> */} </button> */}
{/* <button
onClick={() => {
clusters.forEach((cluster) => cluster.autoMark());
refresh();
}}
>
Zaznacz automatycznie
</button> */}
{clusters.map((cluster) => { {clusters.map((cluster) => {
return ( return (
<StolenDataCluster <StolenDataCluster