-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: resolve warnings about deprecated functions
- Loading branch information
Showing
14 changed files
with
87 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
lib/logflare_web/templates/admin_shared/nav_links_live.html.heex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
<div class="log-settings float-right"> | ||
<ul> | ||
<li> | ||
<%= link to: Routes.admin_path(@socket, :sources) do %> | ||
<.link navigate={~p"/admin/sources"}> | ||
<i class="fas fa-list"></i><span class="hide-on-mobile"> sources</span> | ||
<% end %> | ||
</.link> | ||
</li> | ||
<li> | ||
<%= link to: Routes.admin_path(@socket, :accounts) do %> | ||
<.link navigate={~p"/admin/accounts"}> | ||
<i class="fas fa-users"></i><span class="hide-on-mobile"> accounts</span> | ||
<% end %> | ||
</.link> | ||
</li> | ||
<li> | ||
<%= link to: Routes.cluster_path(@socket, :index) do %> | ||
<.link navigate={~p"/admin/cluster"}> | ||
<i class="fas fa-server"></i><span class="hide-on-mobile"> cluster</span> | ||
<% end %> | ||
</.link> | ||
</li> | ||
<li> | ||
<%= link to: Routes.live_path(@socket, LogflareWeb.AdminSearchDashboardLive) do %> | ||
<i class="fas fa-search"></i><span class="hide-on-mobile"> search</span> | ||
<% end %> | ||
</li> | ||
<li> | ||
<%= link to: Routes.admin_plan_path(@socket, :index) do %> | ||
<.link navigate={~p"/admin/plans"}> | ||
<i class="fas fa-dollar-sign"></i><span class="hide-on-mobile"> plans</span> | ||
<% end %> | ||
</.link> | ||
</li> | ||
</ul> | ||
</div> |
Oops, something went wrong.