Skip to content

Commit

Permalink
fix: missing cursor-pointer for custom tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiyozz committed Feb 2, 2025
1 parent dd20bd8 commit 87d69ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/guide-frame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export function GuideFrame({
<div {...restAttribs} className={cn('contents!', nodeClassName)}>
<button
type="button"
className="group contents"
className="group contents cursor-pointer"
onClick={async (evt) => {
// open in browser if ctrl/cmd is pressed
if (isMacOs ? evt.metaKey : evt.ctrlKey) {
Expand Down
2 changes: 1 addition & 1 deletion src/ipc/bindings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export type TauRpcUpdateApiOutputTypes = { proc_name: "startUpdate"; output_type

export type User = { id: number; name: string; is_admin: number; is_certified: number }

const ARGS_MAP = {'security':'{"getWhiteList":[]}', 'update':'{"startUpdate":[]}', 'base':'{"newId":[],"openUrl":["url"]}', 'almanax':'{"get":["level","date"]}', 'conf':'{"set":["conf"],"toggleGuideCheckbox":["guide_id","step_index","checkbox_index"],"reset":[],"get":[]}', 'image':'{"fetchImage":["url"]}', '':'{"isAppVersionOld":[]}', 'guides':'{"getFlatGuides":["folder"],"getGuidesFromServer":["status"],"downloadGuideFromServer":["guide_id","folder"],"getGuideFromServer":["guide_id"],"getGuides":["folder"],"openGuidesFolder":[]}'}
const ARGS_MAP = {'update':'{"startUpdate":[]}', 'base':'{"openUrl":["url"],"newId":[]}', 'conf':'{"toggleGuideCheckbox":["guide_id","step_index","checkbox_index"],"reset":[],"get":[],"set":["conf"]}', 'guides':'{"getGuideFromServer":["guide_id"],"downloadGuideFromServer":["guide_id","folder"],"getGuidesFromServer":["status"],"getFlatGuides":["folder"],"getGuides":["folder"],"openGuidesFolder":[]}', 'image':'{"fetchImage":["url"]}', 'security':'{"getWhiteList":[]}', 'almanax':'{"get":["level","date"]}', '':'{"isAppVersionOld":[]}'}
import { createTauRPCProxy as createProxy } from "taurpc"

export const createTauRPCProxy = () => createProxy<Router>(ARGS_MAP)
Expand Down

0 comments on commit 87d69ce

Please sign in to comment.