mirror of https://github.com/databricks/cli.git
Fix link to workspace after AWS OAuth login (#234)
`Host` is already normalized and always has the `https://` prefix.
This commit is contained in:
parent
e872b587cc
commit
da4b58a897
|
@ -52,11 +52,11 @@
|
||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #C4CCD6;
|
color: #C4CCD6;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #90A5B1;
|
color: #90A5B1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@
|
||||||
<div class="content">{{ .ErrorDescription }}</div>
|
<div class="content">{{ .ErrorDescription }}</div>
|
||||||
<!-- {{ else }} -->
|
<!-- {{ else }} -->
|
||||||
<div class="title">Authenticated</div>
|
<div class="title">Authenticated</div>
|
||||||
<div class="content">Go to <a href="https://{{.Host}}">{{.Host}}</a></div>
|
<div class="content">Go to <a href="{{.Host}}">{{.Host}}</a></div>
|
||||||
<!-- {{ end }} -->
|
<!-- {{ end }} -->
|
||||||
<div class="content">
|
<div class="content">
|
||||||
You can close this tab. Or go to <a href="https://docs.databricks.com/dev-tools/index-cli.html">documentation</a>
|
You can close this tab. Or go to <a href="https://docs.databricks.com/dev-tools/index-cli.html">documentation</a>
|
||||||
|
@ -99,4 +99,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue