-
-
Notifications
You must be signed in to change notification settings - Fork 885
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Open links in new tab setting #3318
Add Open links in new tab setting #3318
Conversation
4d5292b
to
b41b814
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests are likely failing because of above issue. You can run the scripts/test.sh
to make sure everything passes.
crates/db_schema/src/schema.rs
Outdated
@@ -393,6 +393,7 @@ diesel::table! { | |||
show_bot_accounts -> Bool, | |||
show_read_posts -> Bool, | |||
show_new_post_notifs -> Bool, | |||
open_links_in_new_tab -> Bool, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be added at the end, the columns need to be in the correct order in this file (I think.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've reordered the attribute
Head branch was pushed to by a user without write access
pub email_verified: Option<bool>, | ||
pub accepted_application: Option<bool>, | ||
pub totp_2fa_secret: Option<Option<String>>, | ||
pub totp_2fa_url: Option<Option<String>>, | ||
pub open_links_in_new_tab: Option<bool>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You declared the same field twice in a couple of places, so build is failing.
f50e709
to
fa193c8
Compare
No description provided.