Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
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
Dima Krasner
Sharkey
Commits
7e26daa5
Commit
7e26daa5
authored
3 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
fix(client): クリップの設定を編集できない問題を修正
Fix #8046
parent
225d7701
No related branches found
Branches containing commit
No related tags found
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
packages/client/src/pages/clip.vue
+16
-12
16 additions, 12 deletions
packages/client/src/pages/clip.vue
with
17 additions
and
12 deletions
CHANGELOG.md
+
1
−
0
View file @
7e26daa5
...
...
@@ -16,6 +16,7 @@
### Bugfixes
-
クライアント: タッチ機能付きディスプレイを使っていてマウス操作をしている場合に一部機能が動作しない問題を修正
-
クライアント: クリップの設定を編集できない問題を修正
## 12.98.0 (2021/12/03)
...
...
This diff is collapsed.
Click to expand it.
packages/client/src/pages/clip.vue
+
16
−
12
View file @
7e26daa5
<
template
>
<div
v-if=
"clip"
class=
"_section"
>
<div
class=
"okzinsic _content _panel _gap"
>
<div
v-if=
"clip.description"
class=
"description"
>
<Mfm
:text=
"clip.description"
:is-note=
"false"
:i=
"$i"
/>
<MkSpacer
:content-max=
"800"
>
<div
v-if=
"clip"
>
<div
class=
"okzinsic _panel"
>
<div
v-if=
"clip.description"
class=
"description"
>
<Mfm
:text=
"clip.description"
:is-note=
"false"
:i=
"$i"
/>
</div>
<div
class=
"user"
>
<MkAvatar
:user=
"clip.user"
class=
"avatar"
:show-indicator=
"true"
/>
<MkUserName
:user=
"clip.user"
:nowrap=
"false"
/>
</div>
</div>
<div
class=
"user"
>
<MkAvatar
:user=
"clip.user"
class=
"avatar"
:show-indicator=
"true"
/>
<MkUserName
:user=
"clip.user"
:nowrap=
"false"
/>
</div>
</div>
<XNotes
class=
"_content _gap"
:pagination=
"pagination"
:detail=
"true"
/>
</div>
<XNotes
:pagination=
"pagination"
:detail=
"true"
/>
</div>
</MkSpacer>
</
template
>
<
script
lang=
"ts"
>
...
...
@@ -40,10 +42,11 @@ export default defineComponent({
[
symbols
.
PAGE_INFO
]:
computed
(()
=>
this
.
clip
?
{
title
:
this
.
clip
.
name
,
icon
:
'
fas fa-paperclip
'
,
action
:
{
bg
:
'
var(--bg)
'
,
actions
:
[{
icon
:
'
fas fa-ellipsis-h
'
,
handler
:
this
.
menu
}
}
],
}
:
null
),
clip
:
null
,
pagination
:
{
...
...
@@ -133,6 +136,7 @@ export default defineComponent({
<
style
lang=
"scss"
scoped
>
.okzinsic
{
position
:
relative
;
margin-bottom
:
var
(
--
margin
);
>
.description
{
padding
:
16px
;
...
...
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