Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deployment lifecycle enhancement #11094

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
40f6171
dry run add params for includeCRDS
codeSafari10 Jun 2, 2024
8091931
update deployment step
codeSafari10 Jun 2, 2024
f169534
enhance redux and rtk global configuration
codeSafari10 Jun 2, 2024
7a2f1c9
add environment selection step
codeSafari10 Jun 2, 2024
6f1b2a7
update header
codeSafari10 Jun 2, 2024
d67df28
sync packages
codeSafari10 Jun 2, 2024
e95df5c
add global redux toolkit provider
codeSafari10 Jun 2, 2024
93c6a55
add globalenvironment context slices
codeSafari10 Jun 2, 2024
c71f67e
Merge branch 'master' of github.com:meshery/meshery into deployment-l…
codeSafari10 Jun 2, 2024
423a9bc
add operationsActor
codeSafari10 Jun 2, 2024
ce8dc26
fix icons
codeSafari10 Jun 2, 2024
bbb134a
catch server events in finalize deployment
codeSafari10 Jun 3, 2024
10acba4
remove logs
codeSafari10 Jun 3, 2024
6c07d52
fix url
codeSafari10 Jun 3, 2024
5ffdeb6
Merge branch 'master' of github.com:meshery/meshery into deployment-l…
codeSafari10 Jun 5, 2024
6dc1867
update deploymenet summary step
codeSafari10 Jun 6, 2024
c40b493
Merge branch 'master' of github.com:meshery/meshery into deployment-l…
codeSafari10 Jun 6, 2024
e96ce49
Merge branch 'master' of github.com:meshery/meshery into deployment-l…
codeSafari10 Jun 6, 2024
34982df
create deployment summary formatter
codeSafari10 Jun 7, 2024
aa9c7bd
use connections from global environment
codeSafari10 Jun 7, 2024
76709ad
fix darktheme
codeSafari10 Jun 7, 2024
b3c324b
open in visualizer
codeSafari10 Jun 7, 2024
af37b0d
bump sistent
codeSafari10 Jun 7, 2024
dbcc853
Merge branch 'master' into deployment-lifecycle-enhancement
leecalcote Jun 7, 2024
25984c5
Merge branch 'master' of github.com:meshery/meshery into deployment-l…
codeSafari10 Jun 8, 2024
7f44f2b
update view link
codeSafari10 Jun 8, 2024
1dc7fb1
Merge branch 'deployment-lifecycle-enhancement' of https://github.com…
codeSafari10 Jun 8, 2024
4e133c4
update info tips
codeSafari10 Jun 8, 2024
de790be
update info tip
codeSafari10 Jun 8, 2024
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
5 changes: 3 additions & 2 deletions ui/components/DataFormatter/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const TextWithLinks = ({ text, ...typographyProps }) => {
const linkRegex = /(https?:\/\/[^\s]+)/g;

// Split the text into parts, alternating between text and link components
const parts = text.split(linkRegex);
const parts = text?.split?.(linkRegex) || [];

// Map the parts to React elements
const elements = parts.map((part, idx) => {
Expand All @@ -175,7 +175,7 @@ export const TextWithLinks = ({ text, ...typographyProps }) => {
}
});

return <Typography {...typographyProps}>{elements}</Typography>;
return <Typography {...typographyProps}> {elements}</Typography>;
};

export const KeyValue = ({ Key, Value }) => {
Expand Down Expand Up @@ -208,6 +208,7 @@ export const KeyValue = ({ Key, Value }) => {
color: theme.palette.text.secondary,
textOverflow: 'ellipsis',
wordBreak: 'break-all',
whiteSpace: 'pre-line',
}}
/>
)}
Expand Down
Loading
Loading