Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
337
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
25
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
fee62984
Unverified
Commit
fee62984
authored
6 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
[Client] Fix bug
ドライブのファイルメニューからアバターやバナーに設定することができない問題を修正
parent
e9ebc515
No related branches found
Branches containing commit
Tags
10.78.2
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
src/client/app/desktop/views/components/drive.file.vue
+4
-2
4 additions, 2 deletions
src/client/app/desktop/views/components/drive.file.vue
with
5 additions
and
2 deletions
CHANGELOG.md
+
1
−
0
View file @
fee62984
...
...
@@ -19,6 +19,7 @@ unreleased
*
関係のない返信がタイムラインに流れる問題を修正
*
常にメディアを閲覧注意として投稿するオプションが機能していなかった問題を修正
*
リモートユーザーのアイコンが消えることがある問題を修正
*
ドライブのファイルメニューからアバターやバナーに設定することができない問題を修正
*
クライアントのAPIリクエストをストリーム経由で行うオプションを廃止
*
一部箇所でカスタム絵文字が適用されていないのを修正
...
...
This diff is collapsed.
Click to expand it.
src/client/app/desktop/views/components/drive.file.vue
+
4
−
2
View file @
fee62984
...
...
@@ -36,6 +36,8 @@ import Vue from 'vue';
import
i18n
from
'
../../../i18n
'
;
import
anime
from
'
animejs
'
;
import
copyToClipboard
from
'
../../../common/scripts/copy-to-clipboard
'
;
import
updateAvatar
from
'
../../api/update-avatar
'
;
import
updateBanner
from
'
../../api/update-banner
'
;
export
default
Vue
.
extend
({
i18n
:
i18n
(
'
desktop/views/components/drive.file.vue
'
),
...
...
@@ -180,11 +182,11 @@ export default Vue.extend({
},
setAsAvatar
()
{
this
.
$
updateAvatar
(
this
.
file
);
updateAvatar
(
this
.
$root
)(
this
.
file
);
},
setAsBanner
()
{
this
.
$
updateBanner
(
this
.
file
);
updateBanner
(
this
.
$root
)(
this
.
file
);
},
addApp
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment