Skip to content
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

Added Created at on live component for stories to fix bug , closes #1114 #1118

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/animina_web/controllers/error_html/404.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<div class="w-[90%] flex flex-col md:text-xl gap-1 justify-center items-center m-auto text-center pt-12">
<p>This profile either doesn't exist or you don't have enough points to access it.</p>

<p>You need 20 points to access a .</p>
<p>You need 20 points to access a profile.</p>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

„to access a non public profile“

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"You need 20 points to access a non public profile."

</div>

<.footer />
Expand Down
2 changes: 1 addition & 1 deletion lib/animina_web/live/profile_stories_live.ex
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ defmodule AniminaWeb.ProfileStoriesLive do
>
<.live_component
module={AniminaWeb.StoryComponent}
id={"story_#{story.id}"}
id={"story_#{story.id}_#{story.created_at}"}
briankariuki marked this conversation as resolved.
Show resolved Hide resolved
story={story}
photo={photo}
user={@user}
Expand Down
Loading