mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 08:37:13 +01:00
Compare commits
No commits in common. "bac3ab2c1a6ab1e8fc853b744b9d98e29930fd28" and "d948e122ea93563f8cc3a15260f99d8c4d457d4e" have entirely different histories.
bac3ab2c1a
...
d948e122ea
3 changed files with 3 additions and 7 deletions
|
|
@ -30,7 +30,7 @@ export function EventsTable({ data = [] }) {
|
|||
<Text>
|
||||
{formatMessage(row.eventName ? labels.triggeredEvent : labels.viewedPage)}
|
||||
</Text>
|
||||
<Text weight="bold" style={{ maxWidth: '300px' }} truncate>
|
||||
<Text weight="bold" truncate>
|
||||
{row.eventName || row.urlPath}
|
||||
</Text>
|
||||
</Row>
|
||||
|
|
|
|||
|
|
@ -59,9 +59,7 @@ export function SessionActivity({
|
|||
? formatMessage(labels.triggeredEvent)
|
||||
: formatMessage(labels.viewedPage)}
|
||||
</Text>
|
||||
<Text weight="bold" style={{ maxWidth: '400px' }} truncate>
|
||||
{eventName || urlPath}
|
||||
</Text>
|
||||
<Text weight="bold">{eventName || urlPath}</Text>
|
||||
{hasData > 0 && <PropertiesButton websiteId={websiteId} eventId={eventId} />}
|
||||
</Row>
|
||||
</Row>
|
||||
|
|
|
|||
|
|
@ -117,9 +117,7 @@ const AnimatedRow = ({
|
|||
gap
|
||||
>
|
||||
<Row alignItems="center">
|
||||
<Text truncate={true} style={{ maxWidth: '400px' }}>
|
||||
{label}
|
||||
</Text>
|
||||
<Text>{label}</Text>
|
||||
</Row>
|
||||
<Row alignItems="center" height="30px" justifyContent="flex-end">
|
||||
{change}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue