Skip to content

Commit

Permalink
Merge pull request 'FIX: #1145 Fix SCSS errors' (#1146) from scss-err…
Browse files Browse the repository at this point in the history
…ors into main

Reviewed-on: https://git.joinplu.me/Plume/Plume/pulls/1146
  • Loading branch information
KitaitiMakoto committed Apr 16, 2023
2 parents 19f1842 + 487f296 commit 9425b44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions assets/themes/default/_article.scss
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ main .article-meta {
fill: currentColor;
}
.action.liked:hover svg.feather {
background: transparentize($red, 0.75)
background: transparentize($red, 0.75);
color: $red;
}
}
Expand All @@ -252,7 +252,7 @@ main .article-meta {
background: $primary;
}
.action.reshared:hover svg.feather {
background: transparentize($primary, 0.75)
background: transparentize($primary, 0.75);
color: $primary;
}
}
Expand Down
1 change: 0 additions & 1 deletion plume-models/src/inbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use activitystreams::activity::{Announce, Create, Delete, Follow, Like, Undo, Up

use crate::{
comments::Comment,
db_conn::DbConn,
follows, likes,
posts::{Post, PostUpdate},
reshares::Reshare,
Expand Down
2 changes: 1 addition & 1 deletion plume-models/src/users.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ impl User {
}

for comment in Comment::list_by_author(conn, self.id)? {
let delete_activity = comment.build_delete(&conn)?;
let delete_activity = comment.build_delete(conn)?;
crate::inbox::inbox(
conn,
serde_json::to_value(&delete_activity).map_err(Error::from)?,
Expand Down

0 comments on commit 9425b44

Please sign in to comment.