Skip to content

Commit

Permalink
att style
Browse files Browse the repository at this point in the history
  • Loading branch information
sirmmo committed Nov 12, 2024
1 parent d1b2a6d commit e6ff274
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/app/components/TimeSeriesDialog/DownloadForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ export const DownloadForm = props => {
ids: ids.current,
latitude: latLng.lat,
longitude: latLng.lng,
start: Math.floor(((timeRange?.current?.start || 0) / 100) * 124),
end: Math.ceil(((timeRange?.current?.end || 100) / 100) * 124),
start: timeRange?.current?.start,
end: timeRange?.current?.end,
fitms: filter,
sfs: filter.current?.series?.flat(),
};
Expand Down Expand Up @@ -218,8 +218,8 @@ export const DownloadForm = props => {
ids: ids.current,
latitude: latLng.lat,
longitude: latLng.lng,
start: Math.floor(((timeRange?.current?.start || 0) / 100) * 124),
end: Math.ceil(((timeRange?.current?.end || 100) / 100) * 124),
start: timeRange?.current?.start,
end: timeRange?.current?.end,
fitms: filter,
sfs: filter.current?.series?.flat(),
};
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/TimeSeriesDialog/TSDataContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -968,8 +968,8 @@ const TSDataContainer = (props: TSDataContainerProps) => {
const str = (start, end) => {
console.log('[STF] str()', start, end);
const range = {
start: start,
end: end,
start: parseInt(localStartYear) - baseValue,
end: parseInt(localEndYear) - baseValue,
};
setTimeRange(range);
};
Expand Down
3 changes: 3 additions & 0 deletions src/app/components/TimeSeriesDialog/debug.log
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
[1015/094456.119:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1015/144059.894:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1015/144839.492:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1112/144110.630:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1112/144707.673:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1112/144717.440:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
2 changes: 2 additions & 0 deletions src/app/pages/IndexPage/debug.log
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
[1014/203724.383:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1015/142304.007:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1112/140649.331:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1112/144909.846:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
[1112/144919.001:ERROR:registration_protocol_win.cc(108)] CreateFile: Impossibile trovare il file specificato. (0x2)
3 changes: 2 additions & 1 deletion src/app/pages/IndexPage/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ export const AttStyle = theme => ({
export const AttributionStyle = theme => ({
top: '-20px',
position: 'relative',
background: 'rgba(255, 255, 255, 0.6)',
background: 'rgba(0, 0, 0, 0)',
color: 'white',
width: 'calc( 100% + 24px)',
paddingLeft: '10px',
left: '-12px',
Expand Down

0 comments on commit e6ff274

Please sign in to comment.