Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ export function Confirmation(props: ConfirmationProps): React.ReactNode {
You can find all your created and visited snapshots in the snapshots dialog.
</div>
<CopyInputField value={props.snapshotUrl} className="w-full" />
<div className="mb-4 p-3 bg-yellow-100 border border-yellow-300 text-yellow-800 rounded text-sm">
<ul className="list-disc list-outside pl-4">
<li>Snapshots are not guaranteed to persist, as underlying data or module states may change.</li>
<li>
All Equinor-onboarded users with the link can access the snapshot settings; access to the data
itself requires appropriate permissions (Sumo, SMDA, SSDL etc.).
</li>
</ul>
</div>
</div>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ export function SaveSessionDialog(props: SaveSessionDialogProps): React.ReactNod
</>
}
>
<div className="mb-4 p-3 bg-yellow-100 border border-yellow-300 text-yellow-800 rounded text-sm">
Sessions are not guaranteed to persist, as underlying data or module states may change.
</div>
<div className="flex gap-4 items-center">
<DashboardPreview height={100} width={100} layout={layout} />
<div className="flex flex-col gap-2 grow min-w-0">
Expand Down
Loading