[F] Fix link redirection

This commit is contained in:
Hykilpikonna
2022-08-17 02:15:51 -04:00
parent 0415a6316b
commit 4cd3875ff1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ services:
restart: always restart: always
ports: ports:
- '14792:8000' - '14792:8000'
image: hykilpikonna/lisho:1.0.3 image: hykilpikonna/lisho:1.0.4
environment: environment:
- GOOGLE_API_KEY="Your key here" - GOOGLE_API_KEY="Your key here"
build: . build: .
+1 -1
View File
@@ -85,7 +85,7 @@
<Transition> <Transition>
<div v-if="short && input_hidden" :style="error ? {color: '#ff8383'} : {}"> <div v-if="short && input_hidden" :style="error ? {color: '#ff8383'} : {}">
<div v-if="error">{{short}}</div> <div v-if="error">{{short}}</div>
<a :href="short" v-if="!error">{{short}}</a> <a :href="'https://' + short" v-if="!error">{{short}}</a>
<div class="rem" v-if="!error">( Copied! )</div> <div class="rem" v-if="!error">( Copied! )</div>
</div> </div>
</Transition> </Transition>