Add startswith, endswith & added _cols
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
@@ -34,7 +34,9 @@
|
||||
<span class="text-primary font-semibold">Standard Search:</span> By default,
|
||||
Eleakxir uses a "fuzzy" search. This means it will find results where your search
|
||||
terms are part of a larger string. For example, searching for 1234 would find
|
||||
john.doe@1234.com.
|
||||
john.doe@1234.com. Multiple terms are combined with <b>AND</b>, so all terms
|
||||
must be present, while multiple columns are combined with <b>OR</b>, so a match
|
||||
in any column counts.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
@@ -43,4 +45,13 @@
|
||||
is an exact match for your search term. This is useful for finding specific,
|
||||
unique values.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<span class="text-primary font-semibold">Starts With or Ends With:</span>
|
||||
You can refine your search by using <code>^</code> at the beginning of a term
|
||||
to match only values that <b>start with</b> that term, or <code>$</code> at the
|
||||
end of a term to match only values that <b>end with</b> that term. For example,
|
||||
<code>^admin</code> will find entries starting with "admin", while
|
||||
<code>user$</code> will find entries ending with "user".
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@@ -41,7 +41,6 @@
|
||||
})
|
||||
.then((r) => {
|
||||
result = r.data;
|
||||
console.log(r.data);
|
||||
if (result && result.Status !== "pending") {
|
||||
clearInterval(intervalId);
|
||||
}
|
||||
@@ -120,7 +119,7 @@
|
||||
<Stats {result} />
|
||||
</div>
|
||||
|
||||
{#if result.LeakResult.Error !== "not enabled" }
|
||||
{#if result.LeakResult.Error !== "not enabled"}
|
||||
<div class="collapse collapse-arrow bg-base-100 border">
|
||||
<input type="radio" name="my-accordion-2" checked={true} />
|
||||
<div
|
||||
@@ -187,7 +186,7 @@
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{#if result.GithubResult.Error !== "not enabled" }
|
||||
{#if result.GithubResult.Error !== "not enabled"}
|
||||
<div class="collapse collapse-arrow bg-base-100 border">
|
||||
<input type="radio" name="my-accordion-2" />
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user