Skip to content

Commit 6d9224c

Browse files
committed
v0.0.70
1 parent d82a21c commit 6d9224c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nethlink",
3-
"version": "0.0.69",
3+
"version": "0.0.70",
44
"description": "NethLink app",
55
"main": "./out/main/main.js",
66
"license": "UNLICENSED",

src/main/classes/controllers/NethCTIController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export class NethVoiceAPI {
171171
search: async (
172172
search: string,
173173
offset = 0,
174-
pageSize = 20,
174+
pageSize = 10,
175175
view: 'all' | 'company' | 'person' = 'all'
176176
) => {
177177
const s = await this._GET(

src/renderer/src/components/SearchBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function SearchBox({ search, callUser, handleSearch, handleReset }: Searc
5858
{search !== '' && (
5959
<Button
6060
variant="ghost"
61-
className="absolute right-1 z-100 cursor-pointer mr-2 pt-[2px] pr-[2px] pb-[2px] pl-[2px]"
61+
className="absolute right-1 z-[101] cursor-pointer mr-2 pt-[2px] pr-[2px] pb-[2px] pl-[2px]"
6262
>
6363
<FontAwesomeIcon
6464
icon={DeleteSearchIcon}

src/renderer/src/components/SearchNumberBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export function SearchNumberBox({
213213
</div>
214214

215215
<div
216-
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'}`}
216+
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'}`}
217217
onClick={() => {
218218
if (canAddToPhonebook)
219219
showAddContactToPhonebook()

0 commit comments

Comments
 (0)