Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
仰若水
frappe
Commits
40f48037
Commit
40f48037
authored
7 years ago
by
Rushabh Mehta
Committed by
GitHub
7 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #3960 from rmehta/search-icon-fix-1
[fix] search icon for reportview
parents
224a06ee
8c49f0b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frappe/public/js/frappe/list/list_view.js
+1
-0
frappe/public/js/frappe/list/list_view.js
frappe/public/js/frappe/ui/base_list.js
+4
-0
frappe/public/js/frappe/ui/base_list.js
with
5 additions
and
0 deletions
+5
-0
frappe/public/js/frappe/list/list_view.js
View file @
40f48037
...
...
@@ -127,6 +127,7 @@ frappe.views.ListView = frappe.ui.BaseList.extend({
return
;
}
this
.
is_list_view
=
true
;
this
.
page_name
=
'
List/
'
+
this
.
doctype
;
this
.
dirty
=
true
;
this
.
tags_shown
=
false
;
...
...
This diff is collapsed.
Click to expand it.
frappe/public/js/frappe/ui/base_list.js
View file @
40f48037
...
...
@@ -185,6 +185,10 @@ frappe.ui.BaseList = Class.extend({
}
if
(
this
.
meta
)
{
if
(
this
.
is_list_view
)
{
$
(
`<span class="octicon octicon-search text-muted small"></span>`
)
.
prependTo
(
this
.
page
.
page_form
);
}
this
.
page
.
add_field
({
fieldtype
:
'
Data
'
,
label
:
'
ID
'
,
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help