Skip to content

Commit

Permalink
v0.0.70
Browse files Browse the repository at this point in the history
  • Loading branch information
therockerline committed May 20, 2024
1 parent d82a21c commit 6d9224c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nethlink",
"version": "0.0.69",
"version": "0.0.70",
"description": "NethLink app",
"main": "./out/main/main.js",
"license": "UNLICENSED",
Expand Down
2 changes: 1 addition & 1 deletion src/main/classes/controllers/NethCTIController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export class NethVoiceAPI {
search: async (
search: string,
offset = 0,
pageSize = 20,
pageSize = 10,
view: 'all' | 'company' | 'person' = 'all'
) => {
const s = await this._GET(
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/components/SearchBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function SearchBox({ search, callUser, handleSearch, handleReset }: Searc
{search !== '' && (
<Button
variant="ghost"
className="absolute right-1 z-100 cursor-pointer mr-2 pt-[2px] pr-[2px] pb-[2px] pl-[2px]"
className="absolute right-1 z-[101] cursor-pointer mr-2 pt-[2px] pr-[2px] pb-[2px] pl-[2px]"
>
<FontAwesomeIcon
icon={DeleteSearchIcon}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/components/SearchNumberBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export function SearchNumberBox({
</div>

<div
className={`flex gap-5 pt-[10px] pr-8 pb-[10px] pl-7 w-full min-h-9 ${isCallsEnabled && canAddToPhonebook ? 'cursor-pointer dark:hover:bg-hoverDark hover:bg-hoverLight' : ' bg-hoverDark bg-hoverLight opacity-50 cursor-not-allowed'}`}
className={`flex gap-5 pt-[10px] pr-8 pb-[10px] pl-7 w-full min-h-9 ${isCallsEnabled && canAddToPhonebook ? 'cursor-pointer dark:hover:bg-hoverDark hover:bg-hoverLight' : ' dark:bg-hoverDark bg-hoverLight opacity-50 cursor-not-allowed'}`}
onClick={() => {
if (canAddToPhonebook)
showAddContactToPhonebook()
Expand Down

0 comments on commit 6d9224c

Please sign in to comment.