This commit is contained in:
Konstantin Lepeshenkov 2023-04-25 19:07:36 +02:00
Родитель 9bfa136598
Коммит c5b7d507c7
5 изменённых файлов: 7 добавлений и 6 удалений

Просмотреть файл

@ -1,4 +1,4 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><meta name="durable-functions-monitor-meta"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"><link rel="shortcut icon" href="/favicon.png"><title>Durable Functions Monitor</title><script defer="defer" src="/static/js/main.0dc17465.js"></script><link href="/static/css/main.bc08467f.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><script>var OrchestrationIdFromVsCode="",StateFromVsCode={}</script><script>var DfmRoutePrefix=""</script><script>var DfmClientConfig={}</script><script>var DfmViewMode=0</script><script>var IsFunctionGraphAvailable=0</script><div id="root"></div><svg version="1.1" id="all-azure-icons-svg" style="display:none"><defs><svg version="1.1" id="az-icon-activity" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve"><g><path fill="#3999C6" d="M63.6,32.4c0.6-0.6,0.5-1.7,0-2.3L60.5,27L46.7,13.6c-0.6-0.6-1.5-0.6-2.2,0l0,0c-0.6,0.6-0.8,1.7,0,2.3
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><meta name="durable-functions-monitor-meta"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"><link rel="shortcut icon" href="/favicon.png"><title>Durable Functions Monitor</title><script defer="defer" src="/static/js/main.8ecda1d1.js"></script><link href="/static/css/main.bc08467f.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><script>var OrchestrationIdFromVsCode="",StateFromVsCode={}</script><script>var DfmRoutePrefix=""</script><script>var DfmClientConfig={}</script><script>var DfmViewMode=0</script><script>var IsFunctionGraphAvailable=0</script><div id="root"></div><svg version="1.1" id="all-azure-icons-svg" style="display:none"><defs><svg version="1.1" id="az-icon-activity" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve"><g><path fill="#3999C6" d="M63.6,32.4c0.6-0.6,0.5-1.7,0-2.3L60.5,27L46.7,13.6c-0.6-0.6-1.5-0.6-2.2,0l0,0c-0.6,0.6-0.8,1.7,0,2.3
L59,30.1c0.6,0.6,0.6,1.7,0,2.3L44.2,47.1c-0.6,0.6-0.6,1.7,0,2.3l0,0c0.6,0.6,1.7,0.5,2.2,0l13.7-13.6c0,0,0,0,0.1-0.1L63.6,32.4z
"/><path fill="#3999C6" d="M0.4,32.4c-0.6-0.6-0.5-1.7,0-2.3L3.5,27l13.8-13.4c0.6-0.6,1.5-0.6,2.2,0l0,0c0.6,0.6,0.8,1.7,0,2.3
L5.3,30.1c-0.6,0.6-0.6,1.7,0,2.3l14.5,14.7c0.6,0.6,0.6,1.7,0,2.3l0,0c-0.6,0.6-1.7,0.5-2.2,0L3.6,36c0,0,0,0-0.1-0.1L0.4,32.4z"/><polygon fill="#FCD116" points="47.6,2.5 28.1,2.5 17.6,32.1 30.4,32.2 20.4,61.5 48,22.4 34.6,22.4 "/><polygon opacity="0.3" fill="#FF8C00" enable-background="new " points="34.6,22.4 47.6,2.5 37.4,2.5 26.6,27.1 39.4,27.2

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -11,7 +11,8 @@ import { BackendUri } from '../services/BackendClient';
// DFM-specific route prefix, that is passed to us from the backend via a global static variable
declare const DfmRoutePrefix: string;
export const OrchestrationsPathPrefix = `/orchestrations/`;
// This is used as an anchor when parsing URLs, so it should have low chances to collide with Task Hub names and other prefixes
export const OrchestrationsPathPrefix = `/durable-instances/`;
// Login State
export class LoginState extends ErrorMessageState {