fluffychat merge

This commit is contained in:
ggurdin 2026-02-05 11:37:51 -05:00
commit 3b248c4c9f
No known key found for this signature in database
GPG key ID: A01CB41737CBB478
2 changed files with 3 additions and 1 deletions

View file

@ -16,7 +16,8 @@
# - uses: actions/checkout@v5
# - name: Check duplicates
# run: |
# issues=$(gh issue list --search '${{ env.title }}' --json number,title,url)
# title=$(printf %q "${{ env.title }}")
# issues=$(gh issue list --search '${{ title }}' --json number,title,url)
# number=${{ env.number }}
# issues_filtered=$(echo "$issues" | jq --arg num "$number" 'map(select(.number != ($num | tonumber)))')
# if [ "$(echo "$issues_filtered" | jq length)" -eq 0 ]; then

View file

@ -1094,6 +1094,7 @@ class HtmlMessage extends StatelessWidget {
),
maxLines: limitHeight ? 64 : null,
overflow: TextOverflow.fade,
selectionColor: textColor.withAlpha(128),
),
);
}