Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Pleroma
pleroma-fe
Merge requests
!1146
Polls: Construct an html field during normalization.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Polls: Construct an html field during normalization.
589-poll-options
into
develop
Overview
13
Commits
4
Pipelines
4
Changes
3
Merged
lain
requested to merge
589-poll-options
into
develop
4 years ago
Overview
13
Commits
4
Pipelines
4
Changes
3
Expand
Input of emoji in polls could use some work, but it's a different issue.
Closes
#589 (closed)
0
0
Merge request reports
Compare
develop
version 3
8427c5a0
4 years ago
version 2
72ee51c8
4 years ago
version 1
d41c9a71
4 years ago
develop (base)
and
version 3
latest version
b0b33be9
4 commits,
4 years ago
version 3
8427c5a0
3 commits,
4 years ago
version 2
72ee51c8
2 commits,
4 years ago
version 1
d41c9a71
1 commit,
4 years ago
3 files
+
14
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/components/poll/poll.vue
+
7
−
1
Options
@@ -17,7 +17,7 @@
<span
class=
"result-percentage"
>
{{
percentageForOption
(
option
.
votes_count
)
}}
%
</span>
<span
>
{{
option
.
title
}}
</span>
<span
v-html=
"
option.title
_html"
>
</span>
</div>
<div
class=
"result-fill"
@@ -75,6 +75,12 @@
@import
'../../_variables.scss'
;
.poll
{
img
.emoji
{
vertical-align
:
middle
;
object-fit
:
contain
;
width
:
32px
;
height
:
32px
;
}
.votes
{
display
:
flex
;
flex-direction
:
column
;
Loading