MCPcopy Index your code
hub / github.com/coder/coder / LoadingScriptsAlert

Function LoadingScriptsAlert

site/src/modules/terminal/WorkspaceTerminalAlerts.tsx:106–128  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

104};
105
106const LoadingScriptsAlert: FC = () => {
107 return (
108 <TerminalAlert
109 dismissible
110 severity="info"
111 actions={<RefreshSessionButton />}
112 >
113 Startup scripts are still running. You can continue using this terminal,
114 but{" "}
115 <Link
116 title="your workspace may be incomplete."
117 href={docs(
118 "/admin/templates/troubleshooting#your-workspace-may-be-incomplete",
119 )}
120 target="_blank"
121 rel="noreferrer"
122 >
123 {" "}
124 your workspace may be incomplete.
125 </Link>
126 </TerminalAlert>
127 );
128};
129
130const LoadedScriptsAlert: FC = () => {
131 return (

Callers

nothing calls this directly

Calls 1

docsFunction · 0.90

Tested by

no test coverage detected