mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 13:35:54 +00:00
Fix typo in pointer cursor class
It should be `cursor-pointer` instead of `cursor.pointer`. https://tailwindcss.com/docs/cursor/#pointer
This commit is contained in:
committed by
GitHub
parent
baa9819daf
commit
3ed41eae9c
@@ -139,7 +139,7 @@
|
||||
<tr v-for="log in filteredLogs"
|
||||
:class="{'bg-gray-100': currentLog === log}"
|
||||
@click="setLog(log)">
|
||||
<td class="cursor.pointer px-6 py-4 whitespace-normal border-b border-gray-200 text-sm leading-5 font-medium text-gray-900">
|
||||
<td class="cursor-pointer px-6 py-4 whitespace-normal border-b border-gray-200 text-sm leading-5 font-medium text-gray-900">
|
||||
<p>
|
||||
@{ log.request.method }
|
||||
@{ log.request.uri }
|
||||
@@ -147,7 +147,7 @@
|
||||
<span class="text-xs">@{ log.subdomain }</span>
|
||||
<span class="text-xs text-gray-600">@{ log.performed_at }</span>
|
||||
</td>
|
||||
<td class="cursor.pointer px-6 py-4 whitespace-no-wrap border-b border-gray-200 text-sm leading-5 text-gray-500">
|
||||
<td class="cursor-pointer px-6 py-4 whitespace-no-wrap border-b border-gray-200 text-sm leading-5 text-gray-500">
|
||||
<div v-if="log.response">
|
||||
<span
|
||||
v-if="log.response.status >= 200 && log.response.status < 300"
|
||||
@@ -169,7 +169,7 @@
|
||||
...
|
||||
</div>
|
||||
</td>
|
||||
<td class="cursor.pointer px-6 py-4 whitespace-no-wrap border-b border-gray-200 text-sm leading-5 text-gray-500">
|
||||
<td class="cursor-pointer px-6 py-4 whitespace-no-wrap border-b border-gray-200 text-sm leading-5 text-gray-500">
|
||||
<div v-if="log.response">
|
||||
@{ log.duration }ms
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user