code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/lib/webgl.js b/lib/webgl.js @@ -197,7 +197,7 @@ module.exports = function parseArgs (args_) {
onDestroy = result.onDestroy
}
// workaround for chromium bug, premultiplied alpha value is platform dependent
- contextAttributes.premultipliedAlpha = (contextAttributes.premultipliedAlpha === false) ? false : tr... | 12 |
diff --git a/lib/runtime/console2.js b/lib/runtime/console2.js @@ -21,6 +21,8 @@ export function activate (ink) {
terminal.getTitle = function () {return 'Console'}
modules.onDidChange(debounce(() => changemodule({mod: modules.current(), cols: terminal.terminal.cols}), 200))
+ client.handle({updateWorkspace: () => requ... | 9 |
diff --git a/src/message/displaywindowComponent.html b/src/message/displaywindowComponent.html <div
class="ngeo-displaywindow"
ng-show="$ctrl.open"
- ng-style="$ctrl.style"
title=""
>
- <div class="windowcontainer">
+ <div class="windowcontainer" ng-style="$ctrl.style">
<button
type="button"
| 12 |
diff --git a/articles/appliance/monitoring/index.md b/articles/appliance/monitoring/index.md @@ -14,5 +14,4 @@ Your options include:
* **Health Checks**: [Health Checks](/appliance/dashboard/troubleshoot#health-check) provide minute-by-minute summaries of your PSaaS Appliance infrastructure at a given point in time. Th... | 2 |
diff --git a/package.json b/package.json "dependencies": {
"@projectstorm/react-diagrams": "^5.3.2",
"@ufx-ui/bfx-containers": "^0.5.5",
- "@ufx-ui/core": "^0.5.5",
+ "@ufx-ui/core": "^0.5.4",
"axios": "^0.21.1",
"bfx-api-node-models": "^1.2.4",
"bfx-api-node-util": "^1.0.8",
| 3 |
diff --git a/build_filterNames.js b/build_filterNames.js @@ -21,6 +21,7 @@ validateSchema('config/canonical.json', canonical, canonicalSchema);
let discard = Object.assign({}, allNames);
let keep = {};
let rIndex = {};
+let ambiguous = {};
filterNames();
mergeConfig();
@@ -119,7 +120,7 @@ function mergeConfig() {
// Cr... | 9 |
diff --git a/src/encoded/static/components/search.js b/src/encoded/static/components/search.js @@ -744,7 +744,7 @@ const Term = (props) => {
href = `${searchBase}${field}!=*`;
}
} else {
- href = `${this.props.searchBase}${field}=${globals.encodedURIComponent(term)}`;
+ href = `${searchBase}${field}=${globals.encodedUR... | 1 |
diff --git a/js/views/Map.js b/js/views/Map.js @@ -310,9 +310,12 @@ function getStatusView(loading, error, onReload) {
var fudgeOme = path => path.replace(/mosaic_DAPI_z2.tif/, 'mosaic_DAPI_z2_ome.tif');
+var relativeOrAbsolute = (host, path) => path.startsWith('http') ? path :
+ host + '/download' + path;
+
function s... | 11 |
diff --git a/src/middleware/packages/activitypub/services/object.js b/src/middleware/packages/activitypub/services/object.js @@ -48,7 +48,7 @@ const ObjectService = {
let { objectUri, predicates } = ctx.params;
let object;
do {
- await delay(1000);
+ if (object) await delay(1000); // Delay only on second loop
object = ... | 7 |
diff --git a/test_app/app/js/index.js b/test_app/app/js/index.js @@ -56,8 +56,8 @@ $(document).ready(function() {
// If web3.js 1.0 is being used
if (EmbarkJS.isNewWeb3()) {
- SimpleStorage.methods.set(value).send({from: web3.eth.defaultAccount});
- addToLog("#blockchain", "SimpleStorage.methods.set(value).send({from: ... | 3 |
diff --git a/config/redirects.js b/config/redirects.js @@ -835,7 +835,11 @@ module.exports = [
},
{
from: '/cli',
- to: '/tutorials/using-auth0-to-secure-an-api'
+ to: '/tutorials/using-auth0-to-secure-a-cli'
+ },
+ {
+ from: '/tutorials/using-auth0-to-secure-an-api',
+ to: '/tutorials/using-auth0-to-secure-a-cli'
},
{... | 0 |
diff --git a/src/menelaus_web.erl b/src/menelaus_web.erl @@ -485,7 +485,8 @@ get_action(Req, {AppRoot, IsSSL, Plugins}, Path, PathTokens) ->
{{[settings], write},
fun menelaus_web_queries:handle_curl_whitelist_post/1};
["settings", "logRedaction"] ->
- {{[settings], write}, fun menelaus_web_cluster_logs:handle_settings... | 11 |
diff --git a/tests/test_objects.py b/tests/test_objects.py @@ -12,7 +12,6 @@ def test_get_git_object(client, celery_app):
result = client.simulate_get(
'/datasets/{}/objects/85b9ddf2bfaf1d9300d612dc29774a98cc1d5e25'.format(ds_id), file_wrapper=FileWrapper)
content_len = int(result.headers['content-length'])
- print(res... | 7 |
diff --git a/aws/step/step.go b/aws/step/step.go @@ -1358,6 +1358,7 @@ func NewParallelState(parallelStateName string, states StateMachine) *ParallelSt
// StateMachine is the top level item
type StateMachine struct {
+ name string
comment string
stateDefinitionError error
startAt TransitionState
@@ -1491,6 +1492,7 @@ f... | 0 |
diff --git a/lib/logging/addon/components/logging/targets-nav/component.js b/lib/logging/addon/components/logging/targets-nav/component.js @@ -30,7 +30,7 @@ export default Component.extend({
},
{
type: 'embedded',
- label: 'loggingPage.targetTypes.embedded',
+ // label: 'loggingPage.targetTypes.embedded',
css: 'embedde... | 2 |
diff --git a/source/transfers/package.json b/source/transfers/package.json "test": "truffle test"
},
"devDependencies": {
- "@airswap/order-utils": "0.3.15-beta.0",
+ "@airswap/order-utils": "0.3.15-beta.2",
"@airswap/test-utils": "0.1.3",
"solidity-coverage": "^0.6.3"
},
| 3 |
diff --git a/universe.js b/universe.js @@ -47,11 +47,15 @@ class Universe extends EventTarget {
world.connectState(state);
if (src === undefined) {
- promises.push(metaversefile.load('./scenes/' + sceneNames[0]));
+ promises.push(metaversefile.createAppAsync({
+ start_url: './scenes/' + sceneNames[0],
+ }));
} else if ... | 4 |
diff --git a/editor.jsx b/editor.jsx @@ -827,25 +827,21 @@ return () => {
</div> */}
</div>
<div className="bottom">
- {/* <div className="control" onClick={() => reset()}>
- <img src="/assets/new-shoot.svg" className="icon" />
- <div className="label">Reset</div>
- </div> */}
- <div className="control" onClick={() => ... | 2 |
diff --git a/src/test/models/shareLink.test.js b/src/test/models/shareLink.test.js @@ -5,12 +5,24 @@ describe('ShareLink', () => {
let crowi;
let ShareLink;
let Page;
+ let relatedPage = {};
beforeAll(async(done) => {
crowi = await getInstance();
ShareLink = crowi.model('ShareLink');
Page = require('@server/routes/page... | 12 |
diff --git a/src/article/shared/CaptionComponent.js b/src/article/shared/CaptionComponent.js import { Component } from 'substance'
-// TODO: turn this into a Model based component
+// TODO: turn this into a Model based component, also it should be able to reuse an existing component
export default class CaptionComponen... | 7 |
diff --git a/src/models/market.js b/src/models/market.js @@ -32,6 +32,7 @@ import {
queryImportingApp,
queryImportRecord,
storehubCheck,
+ syncHelmAppStore,
upAppMarket,
upAppModel,
upDataAppVersionInfo,
@@ -91,6 +92,12 @@ export default {
callback(response);
}
},
+ *syncHelmAppStore({ payload, callback, handleError },... | 1 |
diff --git a/src/Utils/index.js b/src/Utils/index.js @@ -41,19 +41,7 @@ const ensureUrlWithProtocol = url => {
}
const getFullPath = path => {
- const pathName = document.location.pathname
- const isRoot = /^\/+$/
-
- if (!isRoot.test(pathName)) {
- const getPath = /(.*)\//
- const matches = getPath.exec(pathName)
-
- ... | 7 |
diff --git a/src/Services/Air/AirValidator.js b/src/Services/Air/AirValidator.js @@ -14,7 +14,9 @@ module.exports = {
),
AIR_PRICE: compose(
- validate(),
+ validate(
+ validators.segments,
+ ),
transform(
transformers.setBusinessFlag,
transformers.setPassengersAge,
| 0 |
diff --git a/sauce/main.js b/sauce/main.js @@ -2,6 +2,14 @@ import features from 'features';
const featureInstances = features.map(Feature => new Feature());
+// Check if the passed feature is enabled.
+function isFeatureEnabled(feature) {
+ return (
+ (typeof feature.settings.enabled === 'boolean' && feature.settings.... | 5 |
diff --git a/bot/paginatedmessages/pageinatedmessage.go b/bot/paginatedmessages/pageinatedmessage.go @@ -42,6 +42,9 @@ func (p *Plugin) BotInit() {
// this just handles interaction events from DMS
pubsub.AddHandler("dm_interaction", func(evt *pubsub.Event) {
dataCast := evt.Data.(*discordgo.InteractionCreate)
+ if data... | 9 |
diff --git a/lib/waterline.js b/lib/waterline.js @@ -10,8 +10,8 @@ var assert = require('assert');
var _ = require('@sailshq/lodash');
var async = require('async');
var Schema = require('waterline-schema');
-var DatastoreBuilder = require('./waterline/utils/system/datastore-builder');
-var CollectionBuilder = require('... | 10 |
diff --git a/modules/Cockpit/rest-api.php b/modules/Cockpit/rest-api.php @@ -31,7 +31,8 @@ $this->on('before', function() {
// api key check
$allowed = false;
- if (preg_match('/account-/', $token)) {
+ // is account token?
+ if ($token && preg_match('/account-/', $token)) {
$account = $this->storage->findOne('cockpit/... | 6 |
diff --git a/tests/test_SafeDecimalMath.py b/tests/test_SafeDecimalMath.py @@ -16,8 +16,7 @@ class TestSafeDecimalMath(unittest.TestCase):
def setUpClass(cls):
compiled = compile_contracts([MATH_MODULE_SOURCE],
remappings=['""=contracts'])
- cls.math = attempt_deploy(compiled, 'PublicMath', MASTER, [],
- print_exceptio... | 2 |
diff --git a/models/boards.js b/models/boards.js @@ -562,13 +562,13 @@ if (Meteor.isServer) {
const data = Boards.find({
archived: false,
- 'members.userId': req.userId, // TODO: How does the current authentication system work? Can we rely on req.userId to be correct?
+ 'members.userId': req.userId,
}, {
sort: ['title'... | 1 |
diff --git a/src/pages/home/report/EmojiPickerMenu.js b/src/pages/home/report/EmojiPickerMenu.js @@ -10,7 +10,7 @@ import TextInputFocusable from '../../../components/TextInputFocusable';
const propTypes = {
// Function to add the selected emoji to the main compose text input
- addEmojiToTextBox: PropTypes.func.isRequi... | 10 |
diff --git a/_data/conferences.yml b/_data/conferences.yml id: icra2020
link: https://icra2020.org//
deadline: '2019-09-15 23:59:59'
- timezone: America/Los_Angeles
+ timezone: UTC-12
date: May 31- June 4, 2020
place: Paris, France
sub: RO
| 3 |
diff --git a/lib/cartodb/models/dataview/aggregation.js b/lib/cartodb/models/dataview/aggregation.js @@ -263,37 +263,26 @@ module.exports = class Aggregation extends BaseDataview {
}
format (result) {
- let categories = [];
- let count = 0;
- let nulls = 0;
- let nans = 0;
- let infinities = 0;
- let minValue = 0;
- le... | 4 |
diff --git a/inspect.js b/inspect.js @@ -367,6 +367,8 @@ const _bakePackage = async p => {
if (q.p) { // package
inspectMode.classList.add('open');
+ progress.setNumeratorDenominator(0, 1);
+ progress.trickle();
const metadata = await fetch(packagesEndpoint + '/' + q.p)
.then(res => res.json());
const {dataHash} = meta... | 0 |
diff --git a/README.md b/README.md @@ -68,7 +68,7 @@ GET https://api.spacexdata.com/v4/launches/latest
"wikipedia": "https://en.wikipedia.org/wiki/Crew_Dragon_Demo-2"
},
"static_fire_date_utc": "2020-05-22T17:39:00.000Z",
- "static_fire_date_unix": "1590169140",
+ "static_fire_date_unix": 1590169140,
"tdb": false,
"net... | 3 |
diff --git a/app/rich-text-editor.js b/app/rich-text-editor.js @@ -60,7 +60,6 @@ module.exports.makeRichText = (element, options, onValueChanged = () => {}) => {
if (u.isCtrlKey(e, keyCodes.E)) math.insertNewEquation()
})
.on('focus blur', e => {
- if (math.isVisible() && e.type === 'focus') math.closeMathEditor()
onRi... | 2 |
diff --git a/src/modules/wallet/modules/leasing/templates/leasing.html b/src/modules/wallet/modules/leasing/templates/leasing.html <div w-i18n-ns="app.ui" class="controls margin-1">
<w-radio-wrap class="split-mode interface" ng-model="$ctrl.filter">
<w-radio value="'all'">
- <span w-i18n="all"></span>
+ <span w-i18n="a... | 1 |
diff --git a/src/components/comment/view/commentView.tsx b/src/components/comment/view/commentView.tsx @@ -45,14 +45,15 @@ const CommentView = ({
incrementRepliesCount
}) => {
const intl = useIntl();
- const actionSheet = useRef(null);
const dispatch = useDispatch();
+ const actionSheet = useRef(null);
+ const repliesC... | 7 |
diff --git a/js/monogatari.js b/js/monogatari.js @@ -2012,6 +2012,8 @@ $_ready(function () {
let directory = characters[parts[1]].Directory;
if (typeof directory == "undefined") {
directory = "";
+ } else {
+ directory += "/";
}
const image = characters[parts[1]].Images[parts[2]];
$_("[data-character='" + parts[1] + "'... | 1 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.49.0",
+ "version": "0.49.1",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/main.js b/main.js @@ -10,6 +10,9 @@ const log = require('electron-log');
* @see: https://www.electronjs.org/docs/tutorial/application-architecture#main-and-renderer-processes
*/
+// Interval that we check for new versions of the app
+const UPDATE_INTERVAL = 1000 * 60 * 60;
+
// TODO: Turn this off, use web... | 12 |
diff --git a/lib/cartodb/controllers/map.js b/lib/cartodb/controllers/map.js @@ -60,7 +60,7 @@ MapController.prototype.register = function(app) {
this.afterLayergroupCreateBuilder({
includeQuery: true
}),
- respond,
+ sendResponse,
augmentError({
label: 'ANONYMOUS LAYERGROUP',
addContext: true
@@ -77,7 +77,7 @@ MapCont... | 10 |
diff --git a/src/pdf.sandbox.external.js b/src/pdf.sandbox.external.js @@ -29,7 +29,7 @@ class SandboxSupportBase {
}
destroy() {
- this.commFunc = null;
+ this.commFun = null;
this.timeoutIds.forEach(([_, id]) => this.win.clearTimeout(id));
this.timeoutIds = null;
}
| 1 |
diff --git a/app/views/simulator/edit.html.erb b/app/views/simulator/edit.html.erb </div>
<div style="position:absolute; right:120px; top:30px; z-index:100">
<button type="button" class="btn zoomButton btn-lg" onclick="undo()">
- <span class="fa fa-redo" aria-hidden="true" title="Undo"></span>
+ <span class="fas fa-und... | 14 |
diff --git a/tests/typed_blocks/type_transfer_block_workspace_test.js b/tests/typed_blocks/type_transfer_block_workspace_test.js @@ -1088,7 +1088,7 @@ function test_type_transfer_block_workspace_letRecSimple() {
}
}
-function test_type_transfer_block_workspace_letRecSimple() {
+function test_type_transfer_block_workspa... | 10 |
diff --git a/lib/waterline/collection.js b/lib/waterline/collection.js @@ -207,7 +207,8 @@ _.extend(
* (& possibly a brand of breakfast cereal)
*
* @param {Dictionary?} staticProps
- * Optional extra set of properties to attach directly to the new ctor.
+ * NO LONGER SUPPORTED: An optional, extra set of properties to a... | 2 |
diff --git a/lib/applydamage.js b/lib/applydamage.js @@ -258,6 +258,12 @@ export default class ApplyDamageDialog extends Application {
html.find('#apply-publicly').on('click', ev => this.submitDirectApply(ev, true))
html.find('#apply-secretly').on('click', ev => this.submitDirectApply(ev, false))
+ // if the "damage" t... | 11 |
diff --git a/assets/js/components/PostSearcherAutoSuggest.js b/assets/js/components/PostSearcherAutoSuggest.js @@ -120,7 +120,7 @@ export default function PostSearcherAutoSuggest( {
if ( currentEntityTitle ) {
setSearchTerm( currentEntityTitle );
}
- }, [ currentEntityTitle, unifiedDashboardEnabled ] );
+ }, [ currentE... | 2 |
diff --git a/test/bdd/steps/api/publish.js b/test/bdd/steps/api/publish.js @@ -37,6 +37,7 @@ When(
operationId,
// keywords: parsedKeywords,
assertion: assertions[assertionName],
+ result,
};
},
);
@@ -65,40 +66,40 @@ When(
},
);
-Given('I wait for last publish to finalize', { timeout: 60000 }, async function publishFi... | 3 |
diff --git a/world.js b/world.js @@ -14,7 +14,7 @@ import {
worldsHost,
tokensHost,
} from './constants.js';
-import {makePromise, getRandomString, getExt} from './util.js';
+import {makePromise, getRandomString} from './util.js';
// world
export const world = new EventTarget();
@@ -449,24 +449,6 @@ world.addEventListe... | 2 |
diff --git a/app/src/scripts/dataset/dataset.file-display.jsx b/app/src/scripts/dataset/dataset.file-display.jsx @@ -74,6 +74,7 @@ export default class FileDisplay extends React.Component {
data={data}
columns={columns}
sortable={true}
+ defaultPageSize={100}
showPageSizeOptions={false}
/>
</div>
| 12 |
diff --git a/token-metadata/0xDaab5E695bb0E8Ce8384ee56BA38fA8290618e52/metadata.json b/token-metadata/0xDaab5E695bb0E8Ce8384ee56BA38fA8290618e52/metadata.json "symbol": "CRDT",
"address": "0xDaab5E695bb0E8Ce8384ee56BA38fA8290618e52",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,20 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+
+## [1.45.3] -- 2019-03-19
+
+### Fixed
+- Fix legend click dispatch on legend item symbols (bug introduced in 1.44.0) [#3635]
+- Fix overla... | 3 |
diff --git a/includes/Traits/Types.php b/includes/Traits/Types.php @@ -86,6 +86,7 @@ trait Types {
public function get_allowed_mime_types() {
$default_allowed_mime_types = [
'image' => [
+ 'image/webp',
'image/png',
'image/jpeg',
'image/jpg',
@@ -133,6 +134,7 @@ trait Types {
$mime_type = $this->get_allowed_mime_types(... | 11 |
diff --git a/webpack.config.js b/webpack.config.js @@ -148,6 +148,7 @@ module.exports = ( env, argv ) => {
loader: 'eslint-loader',
options: {
failOnError: true,
+ formatter: require( 'eslint' ).CLIEngine.getFormatter( 'stylish' ),
},
},
],
@@ -223,6 +224,7 @@ module.exports = ( env, argv ) => {
loader: 'eslint-loader'... | 3 |
diff --git a/Gruntfile.js b/Gruntfile.js @@ -92,19 +92,6 @@ module.exports = function(grunt) {
grunt.log.writeln('');
}
- var dependenciesWithDifferentVersion = shrinkwrapDependencies.checkDependenciesVersion(
- require('./npm-shrinkwrap-010.json'),
- require('./npm-shrinkwrap-69.json'),
- SHRINKWRAP_MODULES_TO_VALIDAT... | 2 |
diff --git a/packages/mip/src/components/mip-bind/bind.js b/packages/mip/src/components/mip-bind/bind.js @@ -140,9 +140,10 @@ class Bind {
} else if (!win.MIP.MIP_ROOT_PAGE && win.parent.g && win.parent.g.hasOwnProperty(key)) {
assign(win.parent.g, data)
!cancel && this._postMessage(data)
- }
+ } else {
Object.assign(w... | 1 |
diff --git a/Sources/web3swift/Web3/Web3+Structures.swift b/Sources/web3swift/Web3/Web3+Structures.swift @@ -370,7 +370,7 @@ public struct Block: Decodable {
}
/// Returns chain version of mainnet block with such number
- var chainVersion: Web3.ChainVersion { Web3.getChainVersion(of: number) }
+ var mainChainVersion: W... | 10 |
diff --git a/test/jasmine/tests/config_test.js b/test/jasmine/tests/config_test.js @@ -474,9 +474,13 @@ describe('config argument', function() {
describe('plotlyServerUrl:', function() {
var gd;
+ var form;
beforeEach(function() {
gd = createGraphDiv();
+ spyOn(HTMLFormElement.prototype, 'submit').and.callFake(function... | 7 |
diff --git a/packages/utils/util.ts b/packages/utils/util.ts @@ -42,7 +42,7 @@ export function removeEmpty(obj: any): AnyObject {
const finalObj: AnyObject = {}
Object.setPrototypeOf(finalObj, proto)
Object.keys(obj).forEach(key => {
- const className = getObjClassName(obj[key])
+ const className = getObjClassName(obj[... | 1 |
diff --git a/docs/common/changelog.md b/docs/common/changelog.md @@ -9,6 +9,10 @@ this will be evened out from v24
- Upgrade rnkiwimobile to version `0.0.45`
+### v35
+- Replace decimal.js with ligher decimal.js-light
+- Improve sentry logging
+
### v34
- Added library to handle decimal prices
| 0 |
diff --git a/content/intro-to-storybook/react-native/en/get-started.md b/content/intro-to-storybook/react-native/en/get-started.md @@ -266,11 +266,11 @@ async function loadResourcesAndDataAsync() {
// Load fonts
await Font.loadAsync({
...Ionicons.font,
- 'space-mono': require('./assets/fonts/SpaceMono-Regular.ttf'),
- ... | 3 |
diff --git a/reputation/plugin_bot.go b/reputation/plugin_bot.go @@ -34,9 +34,16 @@ func (p *Plugin) BotInit() {
var thanksRegex = regexp.MustCompile(`(?i)( |\n|^)(thanks?\pP*|danks|ty|thx|\+rep|\+ ?\<\@[0-9]*\>)( |\n|$)`)
+var repDisabledError = "**Rep command is disabled on this server. Enable it from the control pan... | 11 |
diff --git a/devices.js b/devices.js @@ -15,13 +15,16 @@ const coordinatorGroup = 99;
const generic = {
light_onoff_brightness: {
supports: 'on/off, brightness',
- fromZigbee: [fz.brightness, fz.state_change, fz.state, fz.brightness_report, fz.ignore_genGroups_devChange],
+ fromZigbee: [
+ fz.brightness, fz.state_chang... | 8 |
diff --git a/devices.js b/devices.js @@ -2273,7 +2273,7 @@ const devices = [
vendor: 'Innr',
description: 'Smart plug',
supports: 'on/off, power measurement',
- fromZigbee: [fz.SP120_power, fz.on_off],
+ fromZigbee: [fz.SP120_power, fz.on_off, fz.ignore_genLevelCtrl_report],
toZigbee: [tz.on_off],
meta: {configureKey: ... | 8 |
diff --git a/package.json b/package.json },
"repository": {
"type": "git",
- "url": "git+https://github.com/kellyselden/ember-cli-update.git"
+ "url": "git+https://github.com/ember-cli/ember-cli-update.git"
},
"keywords": [
"ember.js",
"author": "Kelly Selden",
"license": "MIT",
"bugs": {
- "url": "https://github.com/k... | 14 |
diff --git a/lib/plugin/factory.js b/lib/plugin/factory.js @@ -8,8 +8,6 @@ import GitLab from './gitlab/GitLab.js';
import GitHub from './github/GitHub.js';
import npm from './npm/npm.js';
-const requireCwd = createRequire(process.cwd());
-
const debug = _debug('release-it:plugins');
const pluginNames = ['npm', 'git', ... | 7 |
diff --git a/docker-compose.yml b/docker-compose.yml @@ -157,6 +157,7 @@ services:
- INDEX_MARKETPLACE=true
- INDEX_IDENTITY=true
- INDEX_GROWTH=true
+ - INDEX_PROXY=true
- TRAIL_BEHIND_BLOCKS=
- NETWORK=docker
- NOTIFICATIONS_WEBHOOK=
| 12 |
diff --git a/client/src/components/views/Sensors/GridDom/grid.js b/client/src/components/views/Sensors/GridDom/grid.js @@ -23,38 +23,42 @@ class InnerGrid extends Component {
contactLoop = () => {
this.contactTimeout = setTimeout(this.contactLoop, this.interval);
const { updateContacts, locationChange, contacts = [] } ... | 1 |
diff --git a/mobile/components/Avatar/index.js b/mobile/components/Avatar/index.js @@ -6,13 +6,16 @@ type AvatarProps = {
src: string,
size: number,
radius: number,
+ style?: Object,
};
export default class Avatar extends Component<AvatarProps> {
render() {
- const { src, size, radius } = this.props;
+ const { src, siz... | 11 |
diff --git a/.travis.yml b/.travis.yml @@ -15,7 +15,7 @@ script:
- npm run jsHint -- --failTaskOnError
- echo -en 'travis_fold:end:script.jsHint\\r'
- - echo 'test non-webgl' && echo -en 'travis_fold:start:script.test\\r'
+ - echo 'test webgl-stub' && echo -en 'travis_fold:start:script.test\\r'
- npm run test -- --excl... | 14 |
diff --git a/src/og/camera/PlanetCamera.js b/src/og/camera/PlanetCamera.js @@ -646,6 +646,11 @@ class PlanetCamera extends Camera {
}
return res;
}
+
+ isVisible(poi) {
+ let e = this.eye.length();
+ return eye.distance(poi) < Math.sqrt(e * e - this.planet.ellipsoid._a2);
+ }
}
export { PlanetCamera };
| 0 |
diff --git a/_layouts/home.html b/_layouts/home.html @@ -19,9 +19,9 @@ layout: default
</button>
<input class="Form-input Form-input--ultraLean Grid-cell u-sizeFill u-text-r-s u-color-black u-text-r-xs u-borderHideFocus "
required id="newsletter" name="email" />
- <input type="hidden" name="list" value="1">
<label clas... | 5 |
diff --git a/src/client/components/filter/Filter.js b/src/client/components/filter/Filter.js @@ -11,7 +11,7 @@ class Filter extends React.Component {
render() {
return (
<div className="row">
- <div className="input-field col s6 offset-s3">
+ <div className="input-field col s12 m12 l6 offset-l3">
<input
className="vali... | 7 |
diff --git a/src/transforms/aggregate.js b/src/transforms/aggregate.js @@ -68,7 +68,7 @@ var attrs = exports.attributes = {
},
func: {
valType: 'enumerated',
- values: ['count', 'sum', 'avg', 'median', 'mode', 'rms', 'stddev', 'min', 'max', 'first', 'last'],
+ values: ['count', 'sum', 'avg', 'median', 'mode', 'rms', 's... | 0 |
diff --git a/packages/cx/src/widgets/form/DateTimeField.js b/packages/cx/src/widgets/form/DateTimeField.js @@ -472,6 +472,9 @@ class DateTimeInput extends VDOM.Component {
let {instance, data} = this.props;
let {widget} = instance;
+ if (data.disabled || data.readOnly)
+ return;
+
if (widget.reactOn.indexOf(eventType) ... | 1 |
diff --git a/protocols/swap/README.md b/protocols/swap/README.md @@ -22,7 +22,7 @@ To migrate from the V1 to V2 protocol please see [MIGRATION.md](MIGRATION.md).
| Contract | Version | Network | Address |
| :------- | :------ | :------ | :---------------------------------------------------------------------------------... | 3 |
diff --git a/test/extensions/src/test/healthchecker-test.js b/test/extensions/src/test/healthchecker-test.js @@ -39,6 +39,7 @@ const authentication = {
}
};
+
describe('abacus-extensions-healthchecker-test', () => {
const prefix = process.env.ABACUS_PREFIX || '';
@@ -46,41 +47,39 @@ describe('abacus-extensions-healthch... | 7 |
diff --git a/token-metadata/0x13E9EC660d872f55405d70e5C52D872136F0970c/metadata.json b/token-metadata/0x13E9EC660d872f55405d70e5C52D872136F0970c/metadata.json "symbol": "TKT",
"address": "0x13E9EC660d872f55405d70e5C52D872136F0970c",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/client/js/components/PutbackPageModal.jsx b/src/client/js/components/PutbackPageModal.jsx @@ -32,10 +32,11 @@ const PutBackPageModal = (props) => {
setIsPutbackRecursively(!isPutbackRecursively);
}
- async function clickPutbackButtonHandler() {
- try {
+ async function putbackPage() {
setErrorCode(null... | 10 |
diff --git a/src/client/components/display/BarGraph.jsx b/src/client/components/display/BarGraph.jsx import React, { useState, useEffect } from "react";
import { connect } from "react-redux";
-import { Bar } from "react-chartjs-2";
+import { HorizontalBar } from "react-chartjs-2";
import * as store from "../../store";
... | 7 |
diff --git a/src/mermaidAPI.js b/src/mermaidAPI.js @@ -206,6 +206,7 @@ const render = function(id, _txt, cb, container) {
configApi.reset();
const siteConfig = getSiteConfig();
updateRendererConfigs(siteConfig);
+ reinitialize(siteConfig);
}
const cnf = getConfig();
| 1 |
diff --git a/articles/policies/rate-limits.md b/articles/policies/rate-limits.md @@ -32,13 +32,7 @@ For some API endpoints, the rate limits are defined per bucket, so the origins o
## Exceeding the Rate Limit
-If you exceed the provided rate limit for a given API endpoint, you will receive the [429 Too Many Requests](h... | 2 |
diff --git a/token-metadata/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/metadata.json b/token-metadata/0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24/metadata.json "symbol": "RNDR",
"address": "0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/data.js b/data.js @@ -5127,6 +5127,17 @@ module.exports = [{
url: "https://github.com/kylepaulsen/NanoModal",
source: "https://raw.githubusercontent.com/kylepaulsen/NanoModal/master/nanomodal.js"
},
+ {
+ name: "tutorial.js",
+ github: "xxxmatko/tutorial.js",
+ tags: ["tutorial", "intro", "tooltip", "dialo... | 0 |
diff --git a/package.json b/package.json {
"name": "julia-client",
"main": "./lib/julia-client",
- "version": "0.6.6",
+ "version": "0.6.7",
"description": "Julia Evaluation",
"keywords": [],
"repository": "https://github.com/JunoLab/atom-julia-client",
| 6 |
diff --git a/lib/core/events.js b/lib/core/events.js @@ -14,6 +14,7 @@ function log(eventType, eventName) {
//console.log(eventType, eventName);
}
+EventEmitter.prototype._maxListeners = 50;
const _on = EventEmitter.prototype.on;
const _setHandler = EventEmitter.prototype.setHandler;
| 12 |
diff --git a/client/components/cards/checklists.jade b/client/components/cards/checklists.jade @@ -46,8 +46,8 @@ template(name="editChecklistItemForm")
a.js-delete-checklist-item {{_ "delete"}}...
template(name="checklistItems")
- .checklist-items
- each item in checklist.items
+ .checklist-items.js-checklist-items
+ e... | 6 |
diff --git a/js/webviews.js b/js/webviews.js @@ -47,6 +47,14 @@ function getViewBounds () {
}
}
+function captureCurrentTab () {
+ ipc.send('getCapture', {
+ id: tabs.getSelected(),
+ width: Math.round(window.innerWidth / 10),
+ height: Math.round(window.innerHeight / 10)
+ })
+}
+
// set the permissionRequestHandler f... | 7 |
diff --git a/articles/integrations/aws-api-gateway/custom-authorizers/part-4.md b/articles/integrations/aws-api-gateway/custom-authorizers/part-4.md @@ -25,7 +25,7 @@ Log in to AWS and navigate to the [API Gateway Console](http://console.aws.amazo
Custom authorizers are set on a method by method basis; if you want to s... | 1 |
diff --git a/plugins/clamd.js b/plugins/clamd.js @@ -25,7 +25,7 @@ exports.load_excludes = function () {
new_skip_list_exclude.push(re);
}
catch (e) {
- plugin.logerror(e.message + ' (entry: ' + list[i] + ')');
+ plugin.logerror(`${e.message} (entry: ${list[i]})`);
}
}
else {
@@ -36,7 +36,7 @@ exports.load_excludes = f... | 14 |
diff --git a/README.md b/README.md @@ -113,7 +113,7 @@ The keys operator `!` will bang on a corresponding keyboard keypress when the cu
## Base36 Table
-Orca operates on a base of 36 increments. Operators using numeric values will typically also operate on letters and convert them into values as per the following table... | 7 |
diff --git a/kamu/common_settings.py b/kamu/common_settings.py @@ -35,7 +35,7 @@ ROOT_URLCONF = 'kamu.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
- 'DIRS': [ os.path.join(BASE_DIR, "templates")],
+ 'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
| 2 |
diff --git a/src/pages/Settings/Settings.container.js b/src/pages/Settings/Settings.container.js @@ -17,7 +17,7 @@ import {
const mapStateToProps = (state = {}, ownProps = {}) => {
const { layoutID, layoutI: id } = ownProps
const { ui = {} } = state
- const { settings = {} } = ui
+ const { settings = {}, firstLogin } =... | 3 |
diff --git a/articles/api-auth/why-use-access-tokens-to-secure-apis.md b/articles/api-auth/why-use-access-tokens-to-secure-apis.md @@ -39,6 +39,52 @@ Now that we saw what these tokens can be used for, let's see what they cannot be
- __An `id_token` should not be used for API access__. Each token contains information on... | 0 |
diff --git a/test-complete/nodejs-optic-from-lexicons.js b/test-complete/nodejs-optic-from-lexicons.js @@ -452,6 +452,51 @@ describe('Node.js Optic from lexicons test', function(){
}, done);
});
+ it('TEST 12 - join inner with joinInnerDoc and xpath - with queryAsStream chunked', function(done){
+ var count = 0;
+ var ... | 0 |
diff --git a/new-semantics/Semantics.hs b/new-semantics/Semantics.hs @@ -25,7 +25,7 @@ data Value = CurrentBlock |
MulValue Value Value |
DivValue Value Value Value |
-- dividend-^ divisor-^ ^-default value (in case divisor is zero)
- RemValue Value Value Value |
+ ModValue Value Value Value |
-- dividend-^ divisor-^ ^... | 14 |
diff --git a/core/server/api/canary/utils/validators/input/oembed.js b/core/server/api/canary/utils/validators/input/oembed.js const Promise = require('bluebird');
-const i18n = require('../../../../../../shared/i18n');
+const tpl = require('@tryghost/tpl');
const errors = require('@tryghost/errors');
+const messages =... | 14 |
diff --git a/components/Bookmarks/BookmarkMiniFeed.js b/components/Bookmarks/BookmarkMiniFeed.js @@ -25,10 +25,10 @@ const BookmarkMiniFeed = ({ data, closeHandler, style }) => {
error={data.error}
render={() => {
// only members have a bookmark collection
- if (!data.me.collectionItems) {
+ if (!data.me?.collectionIte... | 9 |
diff --git a/articles/libraries/lock/v11/migration-angular.md b/articles/libraries/lock/v11/migration-angular.md section: libraries
title: Migrating Angular applications to Lock 11
description: How to migrate Angular applications to Lock 11
-toc: true
---
-
# Migrating Angular Applications to Lock v11
-Angular applicat... | 14 |
diff --git a/src/module/rules/actions/item/calculate-save-dc.js b/src/module/rules/actions/item/calculate-save-dc.js @@ -19,8 +19,9 @@ export default function (engine) {
if (!dcFormula) {
const ownerKeyAbilityId = actorData?.attributes.keyability;
const itemKeyAbilityId = data.ability;
+ const spellAbility = actorData?... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.