code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/content/en/tools/chrome-devtools/javascript/breakpoints.md b/src/content/en/tools/chrome-devtools/javascript/breakpoints.md @@ -2,7 +2,7 @@ project_path: /web/tools/_project.yaml
book_path: /web/tools/_book.yaml
description: Learn about all the ways you can pause your code in Chrome DevTools.
-{# wf_up... | 1 |
diff --git a/lib/connection.js b/lib/connection.js @@ -1385,7 +1385,7 @@ Connection.prototype.setClient = function setClient(client) {
*
* Syncs all the indexes for the models registered with this connection.
*
- * @param {import('mongodb').CreateIndexesOptions & { continueOnError?: boolean } } options
+ * @param {Obje... | 13 |
diff --git a/src/program/grammar.imba b/src/program/grammar.imba @@ -42,9 +42,14 @@ def denter indent,outdent,stay,o = {}
let cases = {
'$1==$S2\t': indent
- '$1==$S2': stay
+ '$1==$S2': {
+ cases: {'$1==$S6': stay,'@default': {token: '@rematch',switchTo: '@*$1'}}
+ }
'@default': outdent
}
+ for k,v of ['next','switchT... | 7 |
diff --git a/components/Vote/Election.js b/components/Vote/Election.js @@ -226,18 +226,18 @@ class Election extends Component {
this.selectRecommendation = () => {
const { vote } = this.state
- const { data: { election } } = this.props
+ const { data: { election }, vt } = this.props
const recommended = election.candida... | 12 |
diff --git a/packages/phenomic-plugin-bundler-webpack/src/index.js b/packages/phenomic-plugin-bundler-webpack/src/index.js import path from "path"
+// import url from "url"
+// import pkg from "phenomic/package.json"
import findCacheDir from "find-cache-dir"
+// import webpack, { BannerPlugin, optimize, DefinePlugin } ... | 4 |
diff --git a/articles/email/templates.md b/articles/email/templates.md @@ -231,9 +231,8 @@ In addition to the [common variables](#common-variables) available for all email
```
#### Redirect To Results for the Verification Email Template
-You can [configure a **Redirect To** URL](#configuring-redirect-to) to send the us... | 2 |
diff --git a/docs/en/API-reference.md b/docs/en/API-reference.md @@ -6,8 +6,8 @@ The `Dayjs` object is immutable, that is, all API operations that change the `Da
- [API Reference](#api-reference)
- [Parsing](#parsing)
- - [Constructor `.dayjs(existing?: string | number | Date | Dayjs)`](#constructor-dayjsexisting-strin... | 1 |
diff --git a/packages/insomnia-app/app/ui/components/codemirror/code-editor.js b/packages/insomnia-app/app/ui/components/codemirror/code-editor.js @@ -20,7 +20,6 @@ import DropdownItem from '../base/dropdown/dropdown-item';
import { query as queryXPath } from 'insomnia-xpath';
import deepEqual from 'deep-equal';
import... | 2 |
diff --git a/app/models/carto/api_key.rb b/app/models/carto/api_key.rb @@ -74,8 +74,6 @@ module Carto
after_destroy :drop_db_role
after_destroy :remove_from_redis
- attr_writer :redis_client
-
def granted_apis
@granted_apis ||= process_granted_apis
end
| 2 |
diff --git a/assets/sass/components/global/_googlesitekit-DeviceSizeTabBar.scss b/assets/sass/components/global/_googlesitekit-DeviceSizeTabBar.scss svg {
color: $c-device-icon-gray;
-
- path {
- fill: $c-device-icon-gray;
- }
}
&.mdc-tab--active {
svg {
color: $c-white;
-
- path {
- fill: $c-white;
- }
}
}
| 2 |
diff --git a/app/models/audit/AuditTaskInteractionTable.scala b/app/models/audit/AuditTaskInteractionTable.scala @@ -209,17 +209,21 @@ object AuditTaskInteractionTable {
|FROM (
| SELECT (timestamp - LAG(timestamp, 1) OVER(PARTITION BY user_id ORDER BY timestamp)) AS diff
| FROM (
- | SELECT user_id, timestamp
- | FROM... | 7 |
diff --git a/lib/file.js b/lib/file.js @@ -453,13 +453,13 @@ File.prototype.extractHashStyleTasks = function(config, pos, content) {
};
File.prototype.ignoreCodeList = function(name, config) {
- if (config.ignoreList(name)) return true
+ if (config && config.ignoreList(name)) return true
if (!this.isCodeFile()) return ... | 1 |
diff --git a/edit.js b/edit.js @@ -97,7 +97,6 @@ const localMatrix3 = new THREE.Matrix4();
const localFrustum = new THREE.Frustum();
const cubicBezier = easing(0, 1, 0, 1);
-const chunkOffset = new THREE.Vector3(0, 0, 0);
let skybox = null;
let skybox2 = null;
@@ -1235,7 +1234,6 @@ const [
};
const context = renderer.g... | 2 |
diff --git a/src/popup/app.css b/src/popup/app.css @@ -25,11 +25,10 @@ body,
font-family: var(--sans);
color: var(--txt);
display: flex;
-
- /* padding-top: 56px; */
flex-flow: column nowrap;
- min-width: 0;
overflow: hidden;
+ min-width: 564px;
+ min-height: 564px;
}
a {
| 12 |
diff --git a/backend/nomad/jobs/rolling_restart.go b/backend/nomad/jobs/rolling_restart.go @@ -33,7 +33,7 @@ func (w *rollingRestart) Do() (*structs.Response, error) {
if origJob.Meta == nil {
origJob.Meta = make(map[string]string)
}
- origJob.Meta["restarted"] = timestamp.String()
+ origJob.Meta["hashi-ui.restarted"] ... | 10 |
diff --git a/src/widgets/histogram/content-view.js b/src/widgets/histogram/content-view.js @@ -9,6 +9,8 @@ var DropdownView = require('../dropdown/widget-dropdown-view');
var AnimateValues = require('../animate-values.js');
var animationTemplate = require('./animation-template.tpl');
+var TOOLTIP_TRIANGLE_HEIGHT = 4;
+... | 2 |
diff --git a/runtime.js b/runtime.js @@ -4,7 +4,7 @@ import {VOXLoader} from './VOXLoader.js';
// import {GLTFExporter} from './GLTFExporter.js';
import {getExt, mergeMeshes} from './util.js';
// import {bake} from './bakeUtils.js';
-import {makeIconMesh} from './vr-ui.js';
+import {makeIconMesh, makeTextMesh} from './... | 0 |
diff --git a/package.json b/package.json "name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
- "version": "0.215.2",
+ "version": "0.215.3",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
| 6 |
diff --git a/src/client/js/components/Admin/Customize/CustomizeFunctionSetting.jsx b/src/client/js/components/Admin/Customize/CustomizeFunctionSetting.jsx @@ -21,34 +21,35 @@ class CustomizeFunctionSetting extends React.Component {
super(props);
this.state = {
- isDropdownOpen: false,
- isDropdownOpen2: false,
- isDrop... | 10 |
diff --git a/src/libs/actions/Session/index.js b/src/libs/actions/Session/index.js @@ -348,6 +348,7 @@ function setPassword(password, validateCode, accountID) {
}
// This request can fail if the password is not complex enough
+ // eslint-disable-next-line rulesdir/prefer-localization
Onyx.merge(ONYXKEYS.ACCOUNT, {error... | 8 |
diff --git a/src/components/row.js b/src/components/row.js @@ -323,7 +323,7 @@ function Row(props) {
fontWeight: 600,
}}
>
- State bulletin not sufficient to determine districts
+ Awaiting patient-level details from State Bulletin
</div>
</React.Fragment>
)}
| 3 |
diff --git a/css/downloadManager.css b/css/downloadManager.css .download-progress {
width: calc(100% - 1em);
- height: 3px;
+ height: 4px;
margin-top: 0.33em;
background: rgb(22, 122, 224);
border-radius: 2px;
}
.dark-mode .download-progress {
- background: rgb(28, 160, 255);
+ background: lightskyblue;
}
.download-pro... | 7 |
diff --git a/src/components/pinAnimatedInput/views/pinAnimatedInputView.js b/src/components/pinAnimatedInput/views/pinAnimatedInputView.js /* eslint-disable react/no-array-index-key */
import React, { Component } from 'react';
-import { View } from 'react-native';
-import * as Animatable from 'react-native-animatable';... | 13 |
diff --git a/demo/components/create-container-demo.js b/demo/components/create-container-demo.js @@ -8,7 +8,7 @@ import {
import { VictoryTooltip } from "victory-core";
-const Charts = ({ CustomContainer }) => { // eslint-disable-line react/prop-types
+const Charts = ({ behaviors }) => { // eslint-disable-line react/pr... | 7 |
diff --git a/app/shared/actions/governance/proposals.js b/app/shared/actions/governance/proposals.js @@ -223,6 +223,17 @@ export function voteProposal(scope, voter, proposal_name, vote, vote_json) {
setTimeout(() => {
dispatch(getVoteInfo(scope, account));
}, 500);
+ // If this is an offline transaction, also store the... | 11 |
diff --git a/detox/src/devices/drivers/DeviceDriverBase.js b/detox/src/devices/drivers/DeviceDriverBase.js @@ -108,7 +108,6 @@ class DeviceDriverBase {
}
createPayloadFile(notification) {
- const fs = require('fs');
const notificationFilePath = path.join(this.createRandomDirectory(), `payload.json`);
fs.writeFileSync(n... | 2 |
diff --git a/docs/CORDOVA_INSTALL.md b/docs/CORDOVA_INSTALL.md @@ -40,11 +40,20 @@ For running the app in Debug mode on your device:
### Android Notes
-[Cordova: Android - Installing the Requirements](https://cordova.apache.org/docs/en/latest/guide/platforms/android/#installing-the-requirements)
+[Cordova: Android - 'd... | 3 |
diff --git a/test/integration/offline.js b/test/integration/offline.js @@ -546,6 +546,34 @@ describe('Offline', () => {
done();
});
});
+
+ it('should support handler returning Promise that defers', done => {
+ const offline = new OfflineBuilder(new ServerlessBuilder(serverless))
+ .addFunctionHTTP('index', {
+ path: '... | 0 |
diff --git a/src/reducers/ledger/index.js b/src/reducers/ledger/index.js @@ -8,7 +8,8 @@ import {
refreshAccountOwner,
setLedgerTxSigned,
clearSignInWithLedgerModalState,
- showLedgerModal
+ showLedgerModal,
+ hideLedgerModal
} from '../../actions/account';
import { HIDE_SIGN_IN_WITH_LEDGER_ENTER_ACCOUNT_ID_MODAL } fro... | 9 |
diff --git a/bake.html b/bake.html textarea.value = JSON.stringify(statsSpec, null, 2);
textarea.classList.remove('hidden');
+ const {dst} = q;
+ if (dst) {
+ fetch(dst, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'text/plain',
+ },
+ body: err.stack,
+ }).then(res => res.blob());
+ }
+
+ window.parent.postMessa... | 0 |
diff --git a/package.json b/package.json "lower-case": "^1.1.4",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
- "mongodb": "^3.2.5",
+ "mongodb": "^3.2.4",
"path": "^0.12.7",
"path-to-regexp": "^3.0.0",
"request": "^2.88.0",
| 13 |
diff --git a/src/compiler/nodes.imba1 b/src/compiler/nodes.imba1 @@ -7130,8 +7130,7 @@ export class TagContent < TagLike
elif isStatic
return "{bvar} || {ref}.insert$({value.c(o)})"
elif value isa TagTextContent and isOnlyChild and !(parent isa TagSwitchFragment)
- value = value.@nodes[0] if value.@nodes:length == 1
- ... | 7 |
diff --git a/token-metadata/0x56d811088235F11C8920698a204A5010a788f4b3/metadata.json b/token-metadata/0x56d811088235F11C8920698a204A5010a788f4b3/metadata.json "symbol": "BZRX",
"address": "0x56d811088235F11C8920698a204A5010a788f4b3",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/packages/shared/styles/variables/_colors.scss b/packages/shared/styles/variables/_colors.scss @@ -47,14 +47,23 @@ $c-dark: $c-dark-primary !default;
// Text colors on theme colors bg
// Using YIQ by default
-$c-on-primary: color-yiq($c-primary) !default;
-$c-on-secondary: color-yiq($c-secondary) !default;
... | 7 |
diff --git a/packages/turf-meta/index.d.ts b/packages/turf-meta/index.d.ts @@ -105,9 +105,9 @@ export function geomReduce<Reducer extends any, G extends Geometries, P = Proper
/**
* http://turfjs.org/docs/#geomeach
*/
-export function geomEach<G extends Geometries, P = Properties>(
+export function geomEach<G extends (... | 11 |
diff --git a/tasks/noci_test.sh b/tasks/noci_test.sh @@ -9,11 +9,12 @@ root=$(dirname $0)/..
npm run test-jasmine -- --tags=noCI --nowatch || EXIT_STATE=$?
# mapbox image tests take too much resources on CI
-
-# since the update to mapbox-gl@0.44.0, we must use 'new' image-exporter
+#
+# since the update to mapbox-gl@0... | 10 |
diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml @@ -46,7 +46,7 @@ jobs:
./android/app/build.gradle \
./ios/ExpensifyCash/Info.plist \
./ios/ExpensifyCashTests/Info.plist
- git cm -m "Update version to ${{ steps.bumpVersion.outputs.newVersion }}"
+ git commit -m "Update version to ${{ steps.bu... | 10 |
diff --git a/app/controllers/api/database.php b/app/controllers/api/database.php use Utopia\App;
use Utopia\Exception;
use Utopia\Validator\Boolean;
-use Utopia\Validator\FloatValidator as Float;
+use Utopia\Validator\FloatValidator;
use Utopia\Validator\Integer;
use Utopia\Validator\Numeric;
use Utopia\Validator\Range... | 10 |
diff --git a/docs/src/pages/vue-components/scroll-area.md b/docs/src/pages/vue-components/scroll-area.md @@ -18,7 +18,7 @@ This is especially useful for desktop as scrollbars are hidden on a mobile devic
The following examples are best seen on desktop as they make too little sense on a mobile device.
::: tip
-You can a... | 1 |
diff --git a/test/v3/param-style.test.js b/test/v3/param-style.test.js @@ -169,16 +169,16 @@ describe('v3/param-style', () => {
describe('spaceDelimited', () => {
it('primitive', () => {
- expect(param.spaceDelimited('string', 'blue').match).to.equal(false);
+ expect(param.spaceDelimited('string', 'blue')).to.be.undefi... | 3 |
diff --git a/resources/views/laravel-medialibrary/v5/advanced-usage/using-your-own-model.md b/resources/views/laravel-medialibrary/v5/advanced-usage/using-your-own-model.md @@ -19,7 +19,7 @@ class Media extends BaseMedia
In the config file of the package you must specify the name of your custom class:
```php
-// config... | 10 |
diff --git a/api/Methods/index.php b/api/Methods/index.php @@ -11,6 +11,9 @@ require 'classes/apc.caching.php';
$app = new \Slim\Slim();
$oCache = new CacheAPC();
+$app->response->headers->set('Content-Type', 'application/json');
+$app->response->headers->set("Access-Control-Allow-Origin", "*");
+
$services = require '... | 12 |
diff --git a/app/views/accessibilityChoropleth.scala.html b/app/views/accessibilityChoropleth.scala.html <div id="legend" style="display:none;">
<strong style="font-size: 18px">Percent of Neighborhood Complete</strong>
<nav class='legend clearfix'>
- <span style='background:#08306b;'></span>
- <span style='background:#... | 3 |
diff --git a/website_code/php/error_library.php b/website_code/php/error_library.php @@ -51,10 +51,10 @@ function receive_message($user_name, $type, $level, $subject, $content){
/*
- * If error email message turned on, send an error email message
+ * If error email list is set, send an error email message to those user... | 4 |
diff --git a/packages/bitcore-client/src/client.ts b/packages/bitcore-client/src/client.ts @@ -66,8 +66,7 @@ export class Client {
this.baseUrl
}/wallet/${pubKey}/utxos?includeSpent=${includeSpent}`;
const signature = this.sign({ method: 'GET', url, payload });
- return requestStream({
- uri: url,
+ return requestStrea... | 13 |
diff --git a/store/buildMatch.js b/store/buildMatch.js @@ -102,7 +102,7 @@ async function getMatch(matchId) {
}
} catch (e) {
console.error(e);
- if (e.message.startsWith('Server failure during read query') || e.message.startsWith('no players found') || e.message.startsWith('Unexpected end of JSON input') || e.message.... | 9 |
diff --git a/lib/tasks/services.rake b/lib/tasks/services.rake @@ -146,7 +146,7 @@ namespace :cartodb do
assert_valid_arg args, :soft_limit, accepted_values: ['true', 'false']
service_quota_key = "soft_#{service}_limit="
- user.send(service_quota_key, soft_limit)
+ org.send(service_quota_key, soft_limit)
org.save
puts ... | 1 |
diff --git a/app/controllers/api/account.php b/app/controllers/api/account.php @@ -19,7 +19,7 @@ use Appwrite\Utopia\Database\Validator\CustomId;
use MaxMind\Db\Reader;
use Utopia\App;
use Appwrite\Event\Audit;
-use Utopia\Audit\Audit as Audits;
+use Utopia\Audit\Audit as EventAudit;
use Utopia\Config\Config;
use Utopi... | 10 |
diff --git a/website/src/docs/uppy.md b/website/src/docs/uppy.md @@ -318,6 +318,36 @@ Subscribe to an uppy-event. See below for the full list of events.
Uppy exposes events that you can subscribe to in your app:
+### `file-added`
+
+Fired each time file is added.
+
+```javascript
+uppy.on('file-added', (fileID) => {
+ ... | 0 |
diff --git a/docs/dom-testing-library/api-queries.md b/docs/dom-testing-library/api-queries.md @@ -96,6 +96,12 @@ The example below will find the input node for the following DOM structures:
// Wrapper labels
<label>Username <input /></label>
+// Wrapper labels where the label text is in another child element
+<label>
... | 5 |
diff --git a/token-metadata/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/metadata.json b/token-metadata/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/metadata.json "symbol": "DSLA",
"address": "0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/packages/app/src/stores/renderer.tsx b/packages/app/src/stores/renderer.tsx import { HtmlElementNode } from 'rehype-toc';
-import useSWR, { Key, SWRResponse } from 'swr';
+import useSWR, { SWRResponse } from 'swr';
import useSWRImmutable from 'swr/immutable';
import { RendererConfig } from '~/interfaces/se... | 7 |
diff --git a/publish/releases.json b/publish/releases.json {
"sip": 142,
"layer": "base",
+ "released": "base",
"sources": [
"DebtCache",
"FeePool",
{
"sip": 145,
"layer": "base",
+ "released": "base",
"sources": ["DebtCache"]
},
{
"sip": 170,
- "layer": "base"
+ "layer": "base",
+ "released": "base"
},
{
"sip": 174,
"... | 3 |
diff --git a/lib/node_modules/@stdlib/stats/incr/apcorr/lib/main.js b/lib/node_modules/@stdlib/stats/incr/apcorr/lib/main.js @@ -56,6 +56,7 @@ var abs = require( '@stdlib/math/base/special/abs' );
*/
function incrapcorr( meanx, meany ) {
var acc;
+ var N = 0;
if ( arguments.length ) {
if ( !isNumber( meanx ) ) {
throw ... | 9 |
diff --git a/src/client/autoVersion.js b/src/client/autoVersion.js @@ -22,19 +22,22 @@ module.exports = function(client, options) {
// The version string is interpreted by https://github.com/PrismarineJS/node-minecraft-data
const brandedMinecraftVersion = response.version.name; // 1.8.9, 1.7.10
const protocolVersion = ... | 7 |
diff --git a/edit.js b/edit.js @@ -84,12 +84,11 @@ function mod(a, b) {
(async () => {
const q = parseQuery(location.search);
- if (q.w) {
- const url = q.w + '.' + presenceHost;
+ if (q.u) {
await planet.connect({
online: true,
roomName: 'lol',
- url,
+ url: q.u,
});
} else {
await planet.connect({
| 4 |
diff --git a/readme.md b/readme.md @@ -557,7 +557,7 @@ const ComponentWithFeatureToggles = props => {
}
```
-#### `useFlagVarition(flagName: string): FlagVariation`
+#### `useFlagVariation(flagName: string): FlagVariation`
Given you want to use React hooks within a functional component you can read a variation as follo... | 1 |
diff --git a/framer/VekterTextLayer.coffee b/framer/VekterTextLayer.coffee @@ -110,13 +110,13 @@ class StyledTextBlock
firstStyle.setText(text)
@inlineStyles = [firstStyle]
- setTextOverflow: (textOverflow, autoHeight) ->
- if textOverflow in ["ellipsis", "clip"] and not autoHeight
+ setTextOverflow: (textOverflow, max... | 7 |
diff --git a/CHANGELOG.md b/CHANGELOG.md All notable changes to this project are documented in this file.
-## Head
+## 13.2.0
- Security: updated to `postcss-selector-parser@6` due to a vulnerability in one of `postcss-selector-parser@3` dependencies ([#4595](https://github.com/stylelint/stylelint/pull/4595)). Due to t... | 6 |
diff --git a/src/Services/Air/Air.js b/src/Services/Air/Air.js @@ -27,12 +27,15 @@ module.exports = (settings) => {
return service.createReservation(bookingParams).catch((err) => {
if (err instanceof AirRuntimeError.SegmentBookingFailed
|| err instanceof AirRuntimeError.NoValidFare) {
+ if (!options.restrictWaitlist) {... | 0 |
diff --git a/docs/src/components/DocApi.vue b/docs/src/components/DocApi.vue @@ -37,7 +37,7 @@ q-card.doc-api.q-my-lg(v-if="ready", flat, bordered)
q-tab-panels(v-model="currentTab", animated)
q-tab-panel(v-for="tab in tabs", :name="tab", :key="tab" class="q-pa-none")
.row.no-wrap.api-container(v-if="aggregationModel[t... | 1 |
diff --git a/source/offline/CacheManager.js b/source/offline/CacheManager.js import { Database, iterate, promisify as _ } from './Database.js';
-/*global caches, fetch, setTimeout, Response */
+/*global caches, fetch, setTimeout, Request, Response */
+
+const bearerParam = /[?&]access_token=[^&]+/;
+const downloadParam... | 7 |
diff --git a/assets/js/modules/optimize/settings/settings-main.test.js b/assets/js/modules/optimize/settings/settings-main.test.js @@ -45,7 +45,7 @@ describe( 'SettingsMain', () => {
rerender( <SettingsMain isOpen={ true } isEditing={ true } /> );
await wait( () => container.querySelector( '.mdc-text-field__input' ) );... | 1 |
diff --git a/test/jasmine/tests/gl3d_hover_click_test.js b/test/jasmine/tests/gl3d_hover_click_test.js @@ -13,6 +13,7 @@ var assertHoverLabelStyle = customAssertions.assertHoverLabelStyle;
var assertHoverLabelContent = customAssertions.assertHoverLabelContent;
var mock = require('@mocks/gl3d_marker-arrays.json');
+var ... | 0 |
diff --git a/universe.js b/universe.js @@ -9,7 +9,7 @@ import cameraManager from './camera-manager.js';
import {makeTextMesh} from './vr-ui.js';
import {parseQuery, parseCoord} from './util.js';
import {arrowGeometry, arrowMaterial} from './shaders.js';
-import {homeScnUrl} from './constants.js';
+import {landHost, hom... | 0 |
diff --git a/quasar/lang/en-us.js b/quasar/lang/en-us.js @@ -87,25 +87,5 @@ export default {
tree: {
noNodes: 'No nodes available',
noResults: 'No matching nodes found'
- },
- media: {
- oldBrowser: 'To view this video please enable JavaScript and/or consider upgrading to a browser that supports HTML5 video.',
- pause:... | 2 |
diff --git a/src/client/client4.js b/src/client/client4.js @@ -2129,6 +2129,9 @@ export default class Client4 {
if (global && global.window && global.window.analytics && global.window.analytics.initialized) {
global.window.analytics.track('event', properties, options);
} else if (global && global.analytics) {
+ if (glo... | 14 |
diff --git a/src/template.json b/src/template.json "type": ""
},
"eac": 10,
+ "expansionBays": {
+ "value": 0
+ },
"kac": 10,
"cover": "partial",
"hp": {
| 0 |
diff --git a/components/evenement/add-to-calendar.js b/components/evenement/add-to-calendar.js @@ -39,7 +39,7 @@ function AddToCalendar({eventData}) {
}
// Add to calendar button init
- useEffect(() => atcb_init())
+ useEffect(() => atcb_init(), [])
return (
<div className='atcb'>
| 7 |
diff --git a/articles/connections/database/custom-db/index.md b/articles/connections/database/custom-db/index.md @@ -17,7 +17,7 @@ useCase:
If you have your own user database, you can use it as an identity provider in Auth0 to authenticate users.
::: panel Feature availability
-- Only **Enterprise** subscription plans ... | 2 |
diff --git a/templates/master/index.js b/templates/master/index.js @@ -13,7 +13,7 @@ var base={
},
"Email":{
"Type":"String",
- "Description":"Email address for the admin user. Will be used for loging in and for setting the admin password.",
+ "Description":"Email address for the admin user. Will be used for loging in ... | 7 |
diff --git a/token-metadata/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/metadata.json b/token-metadata/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/metadata.json "symbol": "DEV",
"address": "0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/contracts/IssuanceController.sol b/contracts/IssuanceController.sol @@ -257,7 +257,7 @@ contract IssuanceController is SafeDecimalMath, SelfDestructible, Pausable {
nomin.approve(this, amount);
nomin.transferFrom(msg.sender, this, amount);
- // // And send them the Havvens.
+ // And send them the Havvens.
... | 2 |
diff --git a/build/transpile.js b/build/transpile.js @@ -248,7 +248,6 @@ class Transpiler {
[ /parseFloat\s*/g, 'float'],
[ /parseInt\s*/g, 'int'],
[ /self\[([^\]+]+)\]/g, 'getattr(self, $1)' ],
- [ /([^\s(:]+)\.length/g, 'len($1)' ],
[ /Math\.floor\s*\(([^\)]+)\)/g, 'int(math.floor($1))' ],
[ /Math\.abs\s*\(([^\)]+)\)... | 5 |
diff --git a/VisionOnEdge/ui/src/components/CapturePhoto/CapturePhotos.tsx b/VisionOnEdge/ui/src/components/CapturePhoto/CapturePhotos.tsx import React, { useState } from 'react';
-import { Flex, Dropdown, Button, Image, Text } from '@fluentui/react-northstar';
+import { Flex, Dropdown, Button, Image, Text, DropdownIte... | 9 |
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -202,6 +202,9 @@ metaversefile.setApi({
useUi() {
return ui;
},
+ useActivate(fn) {
+ // XXX implement this
+ },
async add(m) {
const appId = appManager.getNextAppId();
const app = appManager.createApp(appId);
| 0 |
diff --git a/token-metadata/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190/metadata.json b/token-metadata/0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190/metadata.json "symbol": "DTH",
"address": "0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/.github/workflows/newcomers-alert.yml b/.github/workflows/newcomers-alert.yml @@ -5,7 +5,7 @@ on:
jobs:
good-first-issue-notify:
if: contains(github.event.issue.labels.*.name, 'good first issue') || contains(github.event.issue.labels.*.name, 'newcomers-only')
- name: Notify Slack on new good-first-issue
+ ... | 7 |
diff --git a/package.json b/package.json "dependencies": {
"arraybuffer-loader": "^1.0.6",
"autoprefixer": "^9.0.1",
+ "base64-loader": "1.0.0",
"bowser": "1.9.4",
"classnames": "2.2.6",
"computed-style-to-inline-style": "3.0.0",
"lodash.debounce": "4.0.8",
"lodash.defaultsdeep": "4.6.0",
"lodash.omit": "4.5.0",
+ "lod... | 5 |
diff --git a/edit.js b/edit.js @@ -12,7 +12,9 @@ import './gif.js';
// import {makeWristMenu, makeHighlightMesh, makeRayMesh} from './vr-ui.js';
import {makeLineMesh, makeTeleportMesh} from './teleport.js';
import perlin from './perlin.js';
-perlin.seed(Math.random());
+import alea from './alea.js';
+const rng = alea('... | 0 |
diff --git a/Gruntfile.js b/Gruntfile.js @@ -410,7 +410,7 @@ module.exports = function (grunt) {
/**
* `grunt affected_specs` compile all Builder specs and launch a webpage in the browser.
*/
- grunt.registerTask('affected_specs', 'Build all Builder specs', [
+ grunt.registerTask('test:browser', 'Build all Builder spec... | 10 |
diff --git a/packages/react-jsx-highcharts/src/utils/events.js b/packages/react-jsx-highcharts/src/utils/events.js -import { mapKeys, lowerFirst } from 'lodash-es';
import pickBy from './pickBy';
export const getEventHandlerProps = props => {
@@ -11,10 +10,14 @@ export const getNonEventHandlerProps = props => {
export ... | 14 |
diff --git a/lib/assets/javascripts/new-dashboard/router/index.js b/lib/assets/javascripts/new-dashboard/router/index.js @@ -4,12 +4,15 @@ import HelloWorld from 'new-dashboard/components/HelloWorld';
Vue.use(Router);
-// TODO: Change to match user in URL
-const user = 'jesusowner';
-const prefix = `/u/${user}/dashboar... | 12 |
diff --git a/src/apps.json b/src/apps.json "22"
],
"headers": {
- "Server": "Cherokee/([\\d.]+)\\;version:\\1"
+ "Server": "Cherokee(?:/([\\d.]+))?\\;version:\\1"
},
"icon": "Cherokee.png",
"website": "http://www.cherokee-project.com"
| 7 |
diff --git a/DepthPass.js b/DepthPass.js @@ -28,7 +28,7 @@ const oldMaterialCache = new WeakMap();
class DepthPass extends Pass {
- constructor( scene, camera, {width, height} ) {
+ constructor( scene, camera, {width, height, filterFn} ) {
super();
@@ -36,6 +36,7 @@ class DepthPass extends Pass {
this.camera = camera;
... | 0 |
diff --git a/package.json b/package.json "gl-select-box": "^1.0.2",
"gl-spikes2d": "^1.0.1",
"gl-surface3d": "^1.3.4",
+ "gl-streamtube3d": "git@github.com:gl-vis/gl-streamtube3d",
"glslify": "^6.1.1",
"has-hover": "^1.0.1",
"has-passive-events": "^1.0.0",
| 0 |
diff --git a/client/templates/topic/topicInfoItemList.js b/client/templates/topic/topicInfoItemList.js @@ -44,6 +44,7 @@ export class TopicInfoItemListContext {
return item;
});
this.isReadonly = isReadonly;
+ this.topicParentId = topicParentId;
this.getSeriesId = () => {
return topicParentId;
};
| 12 |
diff --git a/languages/wizard_en-GB.xml b/languages/wizard_en-GB.xml </Buttons>
<Instructions>
<header>Hotspot instructions:</header>
- <rectangle>Draw a rectangle by pressing the left mouse button and dragging</rectangle>
- <polygon>Click to add points to the polygon. Click the first (red) point to stop</polygon>
- <r... | 7 |
diff --git a/core/server/services/invitations/accept.js b/core/server/services/invitations/accept.js const errors = require('@tryghost/errors');
-const i18n = require('../../../shared/i18n');
+const tpl = require('@tryghost/tpl');
const models = require('../../models');
const security = require('@tryghost/security');
+... | 14 |
diff --git a/public/app/js/main.js b/public/app/js/main.js @@ -150,7 +150,7 @@ $(document).ready(function() {
/* update stream or load from cache */
- var feedsUnsubscribed, storedEpisodes, lastAudioInfo, lastQueueInfos,
+ var storedEpisodes, lastAudioInfo, lastQueueInfos,
lastAudioURL, lastAudioTime;
localforageGetMul... | 1 |
diff --git a/themes/navy/source/scss/main.scss b/themes/navy/source/scss/main.scss @@ -263,6 +263,10 @@ td:nth-child(1) {
transform: rotate(90deg);
}
+div.description a {
+ text-decoration: underline !important;
+ color: -webkit-link !important;
+}
// Importing Vendored Keycard SCSS
@import 'animations';
| 7 |
diff --git a/dc-worker.js b/dc-worker.js @@ -392,7 +392,6 @@ const _handleMethod = async ({method, args}) => {
// console.log('draw cube damage chunks', chunks);
if (chunks) {
- _injectDamages(chunks, instanceKey);
return {
result: _chunksToResult(chunks),
transfers: [],
@@ -420,7 +419,6 @@ const _handleMethod = async ... | 2 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js b/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js @@ -517,7 +517,7 @@ RED.editor = (function() {
} else if (node.type.indexOf("subflow:")===0) {
var subflow = RED.nodes.subflow(node.type.substring(8));
label = RED._("subflo... | 9 |
diff --git a/articles/extensions/user-import-export.md b/articles/extensions/user-import-export.md @@ -38,4 +38,4 @@ There are two ways of using this extension, they are described below:
### Observations
-This extension is not supported in the Appliance.
+The Delegated Administration extension is available in the Appli... | 3 |
diff --git a/userscript.user.js b/userscript.user.js @@ -62283,6 +62283,12 @@ var $$IMU_EXPORT$$;
}
if (domain === "imagery.zoogletools.com" ||
+ // https://s3.amazonaws.com/content.sitezoogle.com/u/243801/88f8a590bc091005ed1823c00dca5bc173e97c89/photo/rnr-interview.jpg
+ // https://s3.amazonaws.com/content.sitezoogle.... | 7 |
diff --git a/src/js/bs3/settings.js b/src/js/bs3/settings.js @@ -258,7 +258,7 @@ define([
'link': 'note-icon-link',
'unlink': 'note-icon-chain-broken',
'magic': 'note-icon-magic',
- 'menuCheck': 'note-icon-check',
+ 'menuCheck': 'note-icon-menu-check',
'minus': 'note-icon-minus',
'orderedlist': 'note-icon-orderedlist',... | 1 |
diff --git a/lib/connection_config.js b/lib/connection_config.js @@ -113,6 +113,11 @@ class ConnectionConfig {
this.timezone = '+' + this.timezone.substr(1);
}
if (this.ssl) {
+ if (typeof this.ssl !== 'object') {
+ throw new TypeError(
+ "SSL profile must be an object, instead it's a " + typeof this.ssl
+ );
+ }
// De... | 1 |
diff --git a/src/components/Explorer/queryTemplate.js b/src/components/Explorer/queryTemplate.js @@ -52,7 +52,7 @@ ${tier ? `AND leagues.tier = '${tier.value}'` : ''}
GROUP BY hero_id
ORDER BY total ${(order && order.value) || 'DESC'}`;
} else {
- const groupVal = `${group.value}${group.bucket ? ` / ${group.bucket} * $... | 9 |
diff --git a/views/components/productpicker.blade.php b/views/components/productpicker.blade.php </select>
<div class="invalid-feedback">{{ $L('You have to select a product') }}</div>
<div id="custom-productpicker-error" class="form-text text-danger d-none"></div>
+ <div class="form-text text-info small">{{ $L('Type a ... | 0 |
diff --git a/server/logger.js b/server/logger.js @@ -12,6 +12,6 @@ const transports = process.env.NODE_ENV === 'test'
]
module.exports = new (winston.Logger)({
- level: process.env.NODE_ENV === 'development' ? 'debug' : 'info',
+ level: process.env.LOG_LEVEL || process.env.NODE_ENV === 'development' ? 'debug' : 'info',... | 11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.