Fix #4489
This commit is contained in:
parent
b157e9535e
commit
75a8037a46
2 changed files with 8 additions and 4 deletions
|
@ -5,6 +5,10 @@ If you encounter any problems with updating, please try the following:
|
||||||
1. `npm run clean` or `npm run cleanall`
|
1. `npm run clean` or `npm run cleanall`
|
||||||
2. Retry update (Don't forget `npm i`)
|
2. Retry update (Don't forget `npm i`)
|
||||||
|
|
||||||
|
unreleased
|
||||||
|
----------
|
||||||
|
* シェアページが機能していない問題を修正
|
||||||
|
|
||||||
10.93.1
|
10.93.1
|
||||||
----------
|
----------
|
||||||
* データのエクスポートとインポートの動作を修正
|
* データのエクスポートとインポートの動作を修正
|
||||||
|
|
|
@ -28,10 +28,10 @@ export default Vue.extend({
|
||||||
computed: {
|
computed: {
|
||||||
template(): string {
|
template(): string {
|
||||||
let t = '';
|
let t = '';
|
||||||
if (this.title && this.url) t += `【[${title}](${url})】\n`;
|
if (this.title && this.url) t += `【[${this.title}](${this.url})】\n`;
|
||||||
if (this.title && !this.url) t += `【${title}】\n`;
|
if (this.title && !this.url) t += `【${this.title}】\n`;
|
||||||
if (this.text) t += `${text}\n`;
|
if (this.text) t += `${this.text}\n`;
|
||||||
if (!this.title && this.url) t += `${url}`;
|
if (!this.title && this.url) t += `${this.url}`;
|
||||||
return t.trim();
|
return t.trim();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue