Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
339
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
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
c89aa7eb
Unverified
Commit
c89aa7eb
authored
6 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
デッキでメディア投稿のみ表示するオプションが機能していない問題を修正
parent
43f4c5b7
No related branches found
No related tags found
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/deck/deck.tl.vue
+5
-3
5 additions, 3 deletions
src/client/app/desktop/views/deck/deck.tl.vue
with
6 additions
and
3 deletions
CHANGELOG.md
+
1
−
0
View file @
c89aa7eb
...
...
@@ -3,6 +3,7 @@ ChangeLog
unreleased
----------
*
デッキでメディア投稿のみ表示するオプションが機能していない問題を修正
*
デッキでユーザーを表示したときにタイムラインが残存する問題を修正
*
モバイルのユーザーページで、ユーザーAのタイムラインから他のユーザーBを選択してユーザーBのタイムラインに移動したとき、ユーザーAのタイムラインが残る問題を修正
*
ハイライトでミュートしているユーザーの投稿が含まれる問題を修正
...
...
This diff is collapsed.
Click to expand it.
src/client/app/desktop/views/deck/deck.tl.vue
+
5
−
3
View file @
c89aa7eb
...
...
@@ -73,16 +73,18 @@ export default Vue.extend({
watch
:
{
mediaOnly
()
{
this
.
fetch
();
(
this
.
$refs
.
timeline
as
any
).
reload
();
}
},
created
()
{
this
.
makePromise
=
cursor
=>
this
.
$root
.
api
(
this
.
endpoint
,
{
limit
:
fetchLimit
+
1
,
untilDate
:
cursor
?
undefined
:
(
this
.
date
?
this
.
date
.
getTime
()
:
undefined
),
untilId
:
cursor
?
cursor
:
undefined
,
...
this
.
baseQuery
,
...
this
.
query
withFiles
:
this
.
mediaOnly
,
includeMyRenotes
:
this
.
$store
.
state
.
settings
.
showMyRenotes
,
includeRenotedMyNotes
:
this
.
$store
.
state
.
settings
.
showRenotedMyNotes
,
includeLocalRenotes
:
this
.
$store
.
state
.
settings
.
showLocalRenotes
}).
then
(
notes
=>
{
if
(
notes
.
length
==
fetchLimit
+
1
)
{
notes
.
pop
();
...
...
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